mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 04:59:02 +08:00
35 lines
814 B
JSON
35 lines
814 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@frameworks": ["./frameworks.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"build/**/*",
|
|
"scripts/**/*",
|
|
"types/**/*",
|
|
"*.ts",
|
|
"*.mts"
|
|
],
|
|
"exclude": ["node_modules", "dist", "content"]
|
|
}
|