start the process of moving over to vite tooling

This commit is contained in:
2025-02-22 15:29:53 -05:00
parent bf40d524b7
commit 5620b65511
7 changed files with 1529 additions and 681 deletions

View File

@ -1,10 +1,25 @@
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"noImplicitAny": true,
"noUnusedLocals": true,
"allowUnusedLabels": false
}
}
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"noImplicitAny": true,
},
"include": ["src"]
}