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 523d7dc commit 5497d16Copy full SHA for 5497d16
2 files changed
examples/full/tsconfig.json
@@ -8,7 +8,9 @@
8
"types": ["vite/client"],
9
"jsx": "react",
10
"skipLibCheck": true,
11
- "esModuleInterop": true
+ "esModuleInterop": true,
12
+ // Test `exactOptionalPropertyTypes` support — https://github.com/vikejs/vike/issues/3251
13
+ "exactOptionalPropertyTypes": true
14
},
15
"include": [
16
"**/*",
packages/vike-react/tsconfig.json
@@ -10,6 +10,7 @@
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
// Resolution
"esModuleInterop": true,
0 commit comments