[👕] Update tsconfig to better work with vite

This commit is contained in:
FIameCaster 2023-10-22 23:24:57 +02:00
parent 36b3f616fc
commit 6b0f6e527d

View file

@ -9,11 +9,14 @@
"jsx": "react",
"jsxFactory": "h",
"allowJs": true,
"moduleResolution": "node",
"moduleResolution": "bundler",
"esModuleInterop": true,
"declaration": true,
"emitDeclarationOnly": true,
"allowImportingTsExtensions": true,
"strictNullChecks": true
"strictNullChecks": true,
"skipLibCheck": true,
"isolatedModules": true,
"types": ["vite/client", "node"]
}
}