backend/tsconfig.json

20 lines
366 B
JSON
Raw Permalink Normal View History

{
2020-11-24 18:10:48 +00:00
"compilerOptions": {
2020-12-03 17:49:21 +00:00
"target": "ES2020",
"module": "commonjs",
2020-11-24 18:10:48 +00:00
"rootDir": "./src",
2020-12-12 11:29:14 +00:00
"outDir": "./dist",
2020-11-24 18:10:48 +00:00
"esModuleInterop": true,
2020-11-25 18:42:22 +00:00
"strict": false,
"experimentalDecorators": true,
2020-12-03 17:48:51 +00:00
"emitDecoratorMetadata": true,
"sourceMap": false
},
2020-12-03 17:48:35 +00:00
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}