mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-10-31 23:09:49 +00:00
27 lines
622 B
JSON
27 lines
622 B
JSON
{
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"outDir": "gen",
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"sourceMap": true,
|
|
"target": "es2017",
|
|
"lib": [
|
|
"es2017",
|
|
"dom"
|
|
],
|
|
"module": "CommonJS",
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"noImplicitThis": false,
|
|
"noImplicitAny": false,
|
|
"preserveConstEnums": true,
|
|
"alwaysStrict": true,
|
|
"strictNullChecks": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
}
|
|
}
|