We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a510d8b commit 79b6a35Copy full SHA for 79b6a35
1 file changed
tsconfig.json
@@ -1,13 +1,11 @@
1
{
2
"compilerOptions": {
3
"target": "es2022",
4
- "module": "node20",
+ "module": "nodenext",
5
+ "moduleResolution": "nodenext",
6
"types": ["node"],
7
"libReplacement": false,
- "declaration": true,
8
- "sourceMap": true,
9
- "rootDir": "./src",
10
- "outDir": "./dist",
+
11
"strict": true,
12
"forceConsistentCasingInFileNames": true,
13
"noFallthroughCasesInSwitch": true,
@@ -17,7 +15,14 @@
17
15
"isolatedDeclarations": true,
18
16
"allowImportingTsExtensions": true,
19
"rewriteRelativeImportExtensions": true,
20
- "erasableSyntaxOnly": true
+ "erasableSyntaxOnly": true,
+ "stableTypeOrdering": true,
21
+ "declaration": true,
22
+ "sourceMap": true,
23
+ "rootDir": "./src",
24
+ "outDir": "./dist",
25
+ "stripInternal": true
26
},
27
"include": ["./src/**/*"]
28
}
0 commit comments