build: add react vite scaffold
This commit is contained in:
parent
abfb885851
commit
f6d6d39a7b
9 changed files with 254 additions and 8 deletions
|
|
@ -1,15 +1,38 @@
|
|||
{
|
||||
"extends": "./.svelte-kit/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"baseUrl": ".",
|
||||
"checkJs": true,
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"ignoreDeprecations": "6.0",
|
||||
"jsx": "react-jsx",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "bundler",
|
||||
"paths": {
|
||||
"$lib/*": ["src/lib/*"]
|
||||
},
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"sourceMap": true,
|
||||
"strict": true,
|
||||
"moduleResolution": "bundler",
|
||||
"types": ["node", "bun-types"]
|
||||
}
|
||||
"target": "ES2022",
|
||||
"types": ["node", "bun-types", "react", "react-dom"]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"src/**/*.tsx",
|
||||
"tests/**/*.ts",
|
||||
"vite.config.ts",
|
||||
"playwright.config.ts",
|
||||
"drizzle.config.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"build",
|
||||
"node_modules",
|
||||
".storybook",
|
||||
".svelte-kit",
|
||||
"src/routes/**",
|
||||
"src/lib/ui/stories/*.svelte"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue