-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
38 lines (37 loc) · 1.04 KB
/
tsconfig.build.json
File metadata and controls
38 lines (37 loc) · 1.04 KB
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
{
"extends": "./tsconfig.json",
"compilerOptions": {
// Relax strict checks for successful DTS build.
// The codebase has pre-existing strict-mode violations;
// these are relaxed here for DTS generation while the base
// tsconfig.json retains full strict mode for IDE/editor feedback.
"strict": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"strictFunctionTypes": false,
"strictBindCallApply": false,
"noImplicitAny": false,
"noImplicitThis": false,
"noImplicitReturns": false,
"noImplicitOverride": false,
"exactOptionalPropertyTypes": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noUncheckedIndexedAccess": false,
"noFallthroughCasesInSwitch": false,
"noEmitOnError": false,
// Keep essential structure checks
"skipLibCheck": true,
"noEmit": false
},
"exclude": [
"node_modules",
"dist",
"coverage",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx",
"src/test-utils/**/*"
]
}