CliffbreakTS-Viewer/server/tsconfig.json
Simon 470ed4a47d
Some checks failed
continuous-integration/drone/push Build is failing
Inital commit
2020-04-29 11:33:39 +02:00

21 lines
No EOL
402 B
JSON

{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"noImplicitAny": false,
"removeComments": true,
"preserveConstEnums": false,
"declaration": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noLib": false,
"allowJs": false,
"sourceMap": false,
},
"include": [
"./src/**/*",
],
"exclude": [
"test",
]
}