backend/tsconfig.json

12 lines
247 B
JSON
Raw Normal View History

{
2020-11-24 18:10:48 +00:00
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
2020-11-24 18:10:48 +00:00
"rootDir": "./src",
"outDir": "./build",
"esModuleInterop": true,
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata":true
2020-11-24 18:10:48 +00:00
}
}