Skip to content

Commit 10ac6ca

Browse files
committed
tsconfig fixes for build
1 parent 08d0622 commit 10ac6ca

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tsconfig.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,19 @@
55
"alwaysStrict": true,
66
"esModuleInterop": true,
77
"forceConsistentCasingInFileNames": true,
8-
"moduleResolution": "node",
8+
"moduleResolution": "bundler",
99
"noFallthroughCasesInSwitch": true,
1010
"noUnusedLocals": true,
1111
"noUnusedParameters": true,
1212
"resolveJsonModule": true,
13-
"target": "es6",
14-
"module": "commonjs",
13+
"target": "es2022",
14+
"module": "esnext",
1515
"declaration": true,
1616
"outDir": "lib",
1717
"strict": true,
1818
"lib": ["dom", "es2022"],
19-
"types": ["jest", "jest-environment-miniflare/globals"]
19+
"types": ["jest", "jest-environment-miniflare/globals"],
20+
"noImplicitAny": true
2021
},
2122
"include": ["src"]
2223
}

0 commit comments

Comments
 (0)