2026-03-31 06:40:07 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"strict": true,
|
2026-04-08 01:07:10 +08:00
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2026-04-22 22:08:35 +08:00
|
|
|
"allowJs": true,
|
|
|
|
|
"checkJs": false,
|
2026-04-08 01:07:10 +08:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true
|
2026-03-31 06:40:07 +08:00
|
|
|
},
|
2026-04-08 01:07:10 +08:00
|
|
|
"include": ["src/**/*.ts"]
|
2026-03-31 06:40:07 +08:00
|
|
|
}
|