-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.server.json
41 lines (41 loc) · 1009 Bytes
/
tsconfig.server.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ES2019",
"composite": true,
"incremental": true,
"module": "commonjs",
"esModuleInterop": true,
"inlineSourceMap": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"traceResolution": false,
"listEmittedFiles": false,
"listFiles": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmitOnError": true,
"types": [
"node",
"jest",
"@types/jest"
]
},
"include": [
"src/**/*.ts",
"src/**/*.json"
],
"exclude": [
"**/node_modules",
"**/.*/",
"dist",
"__test__",
"**/*.spec.ts",
"**/__mocks__",
"**/__tests__",
"**/*.test.ts"
]
}