Skip to content

Commit 030365d

Browse files
committed
chore: update tsconfig to nodenext, add incremental, tsbuildinfo
1 parent 00a88e8 commit 030365d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tsconfig.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
{
22
"$schema": "https://json.schemastore.org/tsconfig",
3-
"display": "Node 16",
43
"compilerOptions": {
54
"target": "es2024",
65
"lib": [
76
"es2024"
87
],
98
"module": "nodenext",
109
"declaration": true,
11-
"moduleResolution": "node16",
10+
"moduleResolution": "nodenext",
11+
"esModuleInterop": true,
1212
"strict": true,
1313
"newLine": "lf",
1414
"removeComments": true,
15-
"esModuleInterop": true,
1615
"forceConsistentCasingInFileNames": true,
1716
"skipLibCheck": true,
1817
"outDir": "./dist",
1918
"sourceMap": true,
2019
"resolveJsonModule": true,
21-
"allowJs": true
20+
"allowJs": true,
21+
"checkJs": true,
22+
"incremental": true,
23+
"tsBuildInfoFile": ".tsbuildinfo"
2224
},
2325
"include": [
2426
"src/**/*.ts",

0 commit comments

Comments
 (0)