v3: Technical refactor (#302)

This commit is contained in:
Mathieu Schimmerling
2025-09-21 23:13:53 +02:00
committed by GitHub
parent f9cf2c60a5
commit 54eeee51b4
125 changed files with 4918 additions and 9071 deletions

28
tsconfig.node.json Normal file
View File

@@ -0,0 +1,28 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"vite.config.ts",
"svelte.config.ts",
"build/**/*",
"scripts/**/*",
"frameworks.ts"
],
"exclude": ["node_modules", "dist", "content", "src"]
}