BREAKING CHANGE: start over for react + three project

This commit is contained in:
2025-05-21 17:39:12 +02:00
parent a6154e1aab
commit 5a82769a5d
81 changed files with 1443 additions and 5728 deletions

View File

@@ -1,10 +1,25 @@
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["build", "vite.config.ts", "tailwind.config.ts"]
"include": ["vite.config.ts"]
}