peertube-plugin-livechat/server/tsconfig.json

27 lines
760 B
JSON
Raw Normal View History

2021-04-07 14:52:38 +00:00
{
"extends": "@tsconfig/node12/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node", // Tell tsc to look in node_modules for modules
"strict": true, // That implies alwaysStrict, noImplicitAny, noImplicitThis
"alwaysStrict": true, // should already be true because of strict:true
"noImplicitAny": true, // should already be true because of strict:true
"noImplicitThis": true, // should already be true because of strict:true
"noImplicitReturns": true,
"strictBindCallApply": true, // should already be true because of strict:true
"noUnusedLocals": true,
"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": []
}