There was an error while loading. Please reload this page.
1 parent 0577611 commit 8697b3cCopy full SHA for 8697b3c
apps/api/tsconfig.app.json
@@ -2,8 +2,24 @@
2
"extends": "./tsconfig.json",
3
"compilerOptions": {
4
"outDir": "../../dist/out-tsc",
5
- "types": ["node"]
+ "types": ["node"],
6
+ "allowSyntheticDefaultImports": true,
7
+ "experimentalDecorators": true,
8
+ "emitDecoratorMetadata": true,
9
+ "forceConsistentCasingInFileNames": true,
10
+ "moduleResolution": "node",
11
+ "module": "commonjs",
12
+ "pretty": true,
13
+ "sourceMap": true,
14
+ "allowJs": true,
15
+ "noEmit": false,
16
+ "esModuleInterop": true,
17
+ "skipLibCheck": true,
18
},
19
+ "typeRoots": [
20
+ "../../../node_modules/@types",
21
+ "./src/app/types"
22
+ ],
23
"exclude": ["**/*.spec.ts"],
24
"include": ["**/*.ts"]
25
}
0 commit comments