[👕] 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", "jsx": "react",
"jsxFactory": "h", "jsxFactory": "h",
"allowJs": true, "allowJs": true,
"moduleResolution": "node", "moduleResolution": "bundler",
"esModuleInterop": true, "esModuleInterop": true,
"declaration": true, "declaration": true,
"emitDeclarationOnly": true, "emitDeclarationOnly": true,
"allowImportingTsExtensions": true, "allowImportingTsExtensions": true,
"strictNullChecks": true "strictNullChecks": true,
"skipLibCheck": true,
"isolatedModules": true,
"types": ["vite/client", "node"]
} }
} }