pvtchat/backend/tsconfig.json

34 lines
657 B
JSON
Raw Permalink Normal View History

2021-08-22 19:25:02 +01:00
{
"compileOnSave": true,
"ts-node": {
"files": true
},
2021-08-22 19:25:02 +01:00
"compilerOptions": {
"downlevelIteration": true,
"esModuleInterop": true,
"inlineSourceMap": true,
"lib": [
"ES2020",
"ES2019",
],
2021-08-22 19:25:02 +01:00
"module": "CommonJS",
"noImplicitAny": false,
2021-11-18 17:47:55 +00:00
"declaration": true,
2021-08-22 19:25:02 +01:00
"outDir": "lib",
"removeComments": true,
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"target": "ES2020",
"skipLibCheck": true,
},
2021-11-11 16:07:41 +00:00
"include": [
"src",
2021-11-11 16:07:41 +00:00
"env",
"**/*.ts"
2021-11-18 17:47:55 +00:00
],
"exclude": [
"test"
]
2021-08-22 19:25:02 +01:00
}