NullcatChan/tsconfig.json
2023-02-03 09:08:22 +09:00

32 lines
583 B
JSON

{
"compilerOptions": {
"noEmit": true,
"noEmitOnError": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"sourceMap": false,
"target": "es2020",
"module": "commonjs",
"removeComments": false,
"noLib": false,
"outDir": "built",
"rootDir": "src",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
},
"compileOnSave": false,
"include": [
"./src/**/*.ts"
],
"ts-node": {
"swc": true
}
}