This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
auracle-api/tsconfig.json
2021-07-31 12:37:47 +02:00

24 lines
614 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"noImplicitAny": true,
"alwaysStrict": true,
"charset": "utf-8",
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"esModuleInterop": true,
"baseUrl": "/src",
"incremental": true,
"types": [
"node",
"express"
],
// Required for TypeORM
"emitDecoratorMetadata": true,
"experimentalDecorators": true
}
}