8bitworkshop/tsconfig.json

27 lines
622 B
JSON
Raw Permalink Normal View History

{
2021-07-24 16:40:46 +00:00
"include": [
"src/**/*.ts"
],
"compilerOptions": {
"outDir": "gen",
"allowJs": false,
"checkJs": false,
"sourceMap": true,
"target": "es2017",
2021-07-24 16:40:46 +00:00
"lib": [
"es2017",
"dom"
],
"module": "CommonJS",
2021-08-01 18:03:50 +00:00
"esModuleInterop": true,
"isolatedModules": true,
2021-07-24 16:40:46 +00:00
"noImplicitThis": false,
"noImplicitAny": false,
"preserveConstEnums": true,
"alwaysStrict": true,
"strictNullChecks": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
}
}