Skip to content

Commit 484392b

Browse files
committed
chore: upgrade tsconfig
1 parent f110900 commit 484392b

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

tsconfig.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,25 @@
88
"forceConsistentCasingInFileNames": true,
99
"importHelpers": false,
1010
"isolatedModules": false,
11-
"moduleResolution": "node",
11+
"moduleResolution": "nodenext",
1212
"noFallthroughCasesInSwitch": true,
13-
"noImplicitAny": false,
14-
"noImplicitReturns": false,
15-
"noImplicitThis": false,
16-
"noUnusedLocals": false,
17-
"noUnusedParameters": false,
13+
"noImplicitAny": true,
14+
"noImplicitReturns": true,
15+
"noImplicitThis": true,
16+
"noUnusedLocals": true,
17+
"noUnusedParameters": true,
1818
"pretty": true,
1919
"removeComments": true,
2020
"resolveJsonModule": true,
2121
"strict": true,
2222
"strictPropertyInitialization": false,
2323
"sourceMap": false,
24-
"module": "esnext",
24+
"outDir": "./dist",
25+
"module": "nodenext",
2526
"target": "es2021",
2627
"jsx": "react",
27-
"outDir": "./dist"
28+
"noImplicitOverride": true,
29+
"skipLibCheck": true
2830
},
29-
"include": ["packages/**/*"]
31+
"include": ["project.types.d.ts", "packages/**/*"]
3032
}

0 commit comments

Comments
 (0)