Migrate to vite + react + tailwindcss

This commit is contained in:
Florian RICHER 2023-04-02 16:24:06 +02:00
parent 384e2fbc2c
commit 4cb5e97faf
28 changed files with 1990 additions and 1092 deletions

23
tsconfig.json Normal file
View file

@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
],
"references": [{ "path": "./tsconfig.node.json"}]
}