tsconfig: fix third-party types

This commit is contained in:
Alex Gleason 2023-09-16 14:36:53 -05:00
parent cf1f2326a2
commit f5a3a26dae
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -12,9 +12,14 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"typeRoots": [ "./types", "./node_modules/@types"],
"typeRoots": [
"./types",
"./node_modules/@types",
"./node_modules"
],
"types": [
"vite/client",
"vitest/globals",
"vite-plugin-compile-time/client"
]
},