mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-06 08:32:51 +08:00
29 lines
608 B
JSON
29 lines
608 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["DOM", "ESNext"],
|
|
"types": ["vite/client"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"composite": true
|
|
},
|
|
"include": [
|
|
"*.yml",
|
|
"package.json",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.vue",
|
|
"src/data/**/*.json",
|
|
"tsconfig.json",
|
|
"vite.config.ts"
|
|
]
|
|
}
|