Support astro & other common FE file extensions (#489)

Closes #462
This commit is contained in:
Will Chen
2025-06-24 22:23:20 -07:00
committed by GitHub
parent 64ae18b34b
commit 08ab7c1c37
16 changed files with 1513 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true
},
"include": ["vite.config.ts"]
}