mirror of
https://github.com/2234839/web-font.git
synced 2025-12-09 03:26:57 +08:00
29 lines
608 B
JSON
29 lines
608 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"lib": [
|
|
"ES2023","DOM"
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/@txikijs/types"
|
|
],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"vite.config.ts",
|
|
"backend/*.ts",
|
|
"backend/**/*.ts",
|
|
]
|
|
} |