Skip to content

Commit ed8071c

Browse files
chore: add back build tsconfig
1 parent 55c7430 commit ed8071c

File tree

3 files changed

+26
-30
lines changed

3 files changed

+26
-30
lines changed

tsconfig.base.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

tsconfig.build.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "./tsconfig"
3+
}

tsconfig.json

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
1-
21
{
3-
"extends": "./tsconfig.base",
4-
"exclude": ["example"]
2+
"exclude": ["example"],
3+
"compilerOptions": {
4+
"baseUrl": "./",
5+
"allowUnreachableCode": false,
6+
"allowUnusedLabels": false,
7+
"esModuleInterop": true,
8+
"importsNotUsedAsValues": "error",
9+
"forceConsistentCasingInFileNames": true,
10+
"jsx": "react",
11+
"lib": ["esnext"],
12+
"module": "esnext",
13+
"moduleResolution": "node",
14+
"noFallthroughCasesInSwitch": true,
15+
"noImplicitReturns": true,
16+
"noImplicitUseStrict": false,
17+
"noStrictGenericChecks": false,
18+
"noUnusedLocals": true,
19+
"noUnusedParameters": true,
20+
"resolveJsonModule": true,
21+
"skipLibCheck": true,
22+
"strict": true,
23+
"target": "esnext"
24+
}
525
}

0 commit comments

Comments
 (0)