Skip to content

Commit 922fd35

Browse files
committed
Update tsconfig.json
1 parent 5b92238 commit 922fd35

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

tsconfig.json

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
{
2-
"include": ["./src", "./demo/src", "./manual/js"],
2+
"include": [
3+
"./src",
4+
"./demo/src",
5+
"./manual/js",
6+
"./types"
7+
],
38
"compilerOptions": {
49
"baseUrl": ".",
510
"outDir": "./build",
6-
"paths": {
7-
"postprocessing": ["./src/index.js"]
8-
},
9-
"moduleResolution": "node",
10-
"module": "ESNext",
11-
"target": "ESNext",
11+
"moduleResolution": "bundler",
12+
"module": "ES2022",
13+
"target": "ES2022",
1214
"strict": true,
1315
"allowJs": true,
1416
"sourceMap": false,
1517
"skipLibCheck": true,
1618
"importHelpers": true,
17-
"downlevelIteration": true,
19+
"resolveJsonModule": true,
1820
"noImplicitOverride": true,
19-
"allowSyntheticDefaultImports": true
21+
"allowSyntheticDefaultImports": true,
22+
"paths": {
23+
"postprocessing": ["./src/index.js"],
24+
"temp": ["./temp"]
25+
}
2026
}
2127
}

0 commit comments

Comments
 (0)