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 d39bf79 commit 1bb9302Copy full SHA for 1bb9302
1 file changed
tsconfig.json
@@ -9,23 +9,21 @@
9
"compilerOptions": {
10
// File Layout
11
"rootDir": ".",
12
- "baseUrl": ".",
13
"outDir": "./dist",
14
"paths": {
15
"postprocessing": ["./src/index.js"],
16
- "temp": ["./temp"]
+ "temp/*": ["./temp/*"]
17
},
18
// Environment Settings
+ "module": "esnext",
19
+ "target": "es2025",
20
"moduleResolution": "bundler",
- "module": "es2022",
21
- "target": "es2022",
+ "types": ["node"],
22
// Style Options
23
"noImplicitReturns": true,
24
"noImplicitOverride": false,
25
// Other
26
- "noUncheckedSideEffectImports": true,
27
"resolveJsonModule": true,
28
- "strict": true,
29
"sourceMap": false,
30
"skipLibCheck": true
31
}
0 commit comments