-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
29 lines (29 loc) · 980 Bytes
/
tsconfig.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
{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./build/service",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": true,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"isolatedModules":true,
"esModuleInterop": true
},
// "exclude": ["node_modules"],
// "include": ["./package.json", "src/**/*", "*.json", "src/config.json"]
"include": [".wrappid/runtime/service/**/*.ts", ".wrappid/runtime/service/**/*.tsx", ".wrappid/runtime/service/**/*.json"],
"exclude": ["node_modules", "dist", ".github", ".git", "temp", "**/*specs.ts"],
}