34 lines
657 B
JSON
34 lines
657 B
JSON
{
|
|
"compileOnSave": true,
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"compilerOptions": {
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"inlineSourceMap": true,
|
|
"lib": [
|
|
"ES2020",
|
|
"ES2019",
|
|
],
|
|
"module": "CommonJS",
|
|
"noImplicitAny": false,
|
|
"declaration": true,
|
|
"outDir": "lib",
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": false,
|
|
"target": "ES2020",
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": [
|
|
"src",
|
|
"env",
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"test"
|
|
]
|
|
} |