ai/tsconfig.json

27 lines
506 B
JSON
Raw Normal View History

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