2025-12-03 12:00:46 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"module": "ESNext",
|
2025-12-04 18:39:07 +08:00
|
|
|
"lib": [
|
|
|
|
|
"ES2020",
|
|
|
|
|
"DOM",
|
|
|
|
|
"DOM.Iterable"
|
|
|
|
|
],
|
2025-12-03 12:00:46 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
2025-12-04 18:39:07 +08:00
|
|
|
"allowJs": true,
|
2025-12-03 12:00:46 +08:00
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
/* Library specifics */
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"emitDeclarationOnly": true
|
|
|
|
|
},
|
2025-12-04 18:39:07 +08:00
|
|
|
"include": [
|
|
|
|
|
"src",
|
|
|
|
|
"playground"
|
|
|
|
|
]
|
|
|
|
|
}
|