We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00a88e8 commit 030365dCopy full SHA for 030365d
tsconfig.json
@@ -1,24 +1,26 @@
1
{
2
"$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Node 16",
4
"compilerOptions": {
5
"target": "es2024",
6
"lib": [
7
"es2024"
8
],
9
"module": "nodenext",
10
"declaration": true,
11
- "moduleResolution": "node16",
+ "moduleResolution": "nodenext",
+ "esModuleInterop": true,
12
"strict": true,
13
"newLine": "lf",
14
"removeComments": true,
15
- "esModuleInterop": true,
16
"forceConsistentCasingInFileNames": true,
17
"skipLibCheck": true,
18
"outDir": "./dist",
19
"sourceMap": true,
20
"resolveJsonModule": true,
21
- "allowJs": true
+ "allowJs": true,
+ "checkJs": true,
22
+ "incremental": true,
23
+ "tsBuildInfoFile": ".tsbuildinfo"
24
},
25
"include": [
26
"src/**/*.ts",
0 commit comments