-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (25 loc) · 738 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (25 loc) · 738 Bytes
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
{
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "build",
"target": "ES5",
"module": "commonJs",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"alwaysStrict": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false
},
"include": ["src/**/*", "__tests__/**/*", "bin/**/*"],
"files": ["src/core/types/index.d.ts", "./Dockerfilepath.ts"],
"exclude": ["infra/**/*"]
}