thunderhub/tsconfig.json

19 lines
423 B
JSON
Raw Normal View History

{
"compilerOptions": {
2021-12-07 22:16:40 -05:00
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
2021-12-07 22:16:40 -05:00
"esModuleInterop": true
},
2021-12-07 22:16:40 -05:00
"include": ["src/server"]
}