2021-08-22 19:25:02 +01:00
|
|
|
{
|
|
|
|
"compileOnSave": true,
|
2022-12-15 05:19:56 +00:00
|
|
|
"ts-node": {
|
|
|
|
"files": true
|
|
|
|
},
|
2021-08-22 19:25:02 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"inlineSourceMap": true,
|
2022-12-15 05:19:56 +00:00
|
|
|
"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": [
|
2022-12-15 05:19:56 +00:00
|
|
|
"src",
|
2021-11-11 16:07:41 +00:00
|
|
|
"env",
|
|
|
|
"**/*.ts"
|
2021-11-18 17:47:55 +00:00
|
|
|
],
|
2022-12-15 05:19:56 +00:00
|
|
|
"exclude": [
|
|
|
|
"test"
|
|
|
|
]
|
2021-08-22 19:25:02 +01:00
|
|
|
}
|