peertube-plugin-livechat/server/tsconfig.json

20 lines
332 B
JSON
Raw Normal View History

2021-04-07 14:52:38 +00:00
{
"extends": "@tsconfig/node16/tsconfig.json",
2021-04-07 14:52:38 +00:00
"compilerOptions": {
"noImplicitReturns": true,
2024-05-25 12:39:45 +00:00
"noImplicitOverride": true,
"noUnusedLocals": true,
2021-04-07 14:52:38 +00:00
"removeComments": true,
"sourceMap": true,
"baseUrl": "./",
"outDir": "../dist/",
"paths": {}
2021-04-07 14:52:38 +00:00
},
"include": [
"./**/*",
"../shared/**/*"
],
2021-04-07 14:52:38 +00:00
"exclude": []
}