Minayotan/tsconfig.json

27 lines
506 B
JSON
Raw Normal View History

2018-08-04 03:42:03 +02:00
{
"compilerOptions": {
"noEmitOnError": true,
"noImplicitAny": false,
"noImplicitReturns": true,
2018-08-05 13:55:27 +02:00
"noImplicitThis": true,
2018-08-04 03:42:03 +02:00
"noFallthroughCasesInSwitch": true,
2020-09-02 14:54:01 +02:00
"strictNullChecks": true,
2018-08-04 03:42:03 +02:00
"experimentalDecorators": true,
"sourceMap": false,
2020-09-19 03:40:44 +02:00
"target": "es2020",
2018-08-04 03:42:03 +02:00
"module": "commonjs",
"removeComments": false,
"noLib": false,
"outDir": "built",
2020-09-19 03:40:44 +02:00
"rootDir": "src",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
2018-08-04 03:42:03 +02:00
},
"compileOnSave": false,
"include": [
"./src/**/*.ts"
]
}