Skip to content

Commit 8697b3c

Browse files
committed
🏷️ tsconfig update
1 parent 0577611 commit 8697b3c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

apps/api/tsconfig.app.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,24 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../../dist/out-tsc",
5-
"types": ["node"]
5+
"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,
618
},
19+
"typeRoots": [
20+
"../../../node_modules/@types",
21+
"./src/app/types"
22+
],
723
"exclude": ["**/*.spec.ts"],
824
"include": ["**/*.ts"]
925
}

0 commit comments

Comments
 (0)