mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 04:59:02 +08:00
29 lines
700 B
JSON
29 lines
700 B
JSON
{
|
|
"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"]
|
|
}
|