CliffbreakMeet/server/tsconfig.json
Simon 067996357a
Some checks failed
continuous-integration/drone/push Build is failing
Inital commit
2020-04-20 18:45:51 +02:00

23 lines
No EOL
458 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/**/*",
// "./scripts/setup/init.ts",
"./migrations/*",
],
"exclude": [
"test",
]
}