mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-06 08:32:51 +08:00
33 lines
768 B
JSON
33 lines
768 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["DOM", "ESNext"],
|
|
"skipLibCheck": true,
|
|
"types": ["vite/client", "node", "color-convert", "js-md5", "uuid", "src/vite-env"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"composite": true
|
|
},
|
|
"include": [
|
|
"*.yml",
|
|
"*.yaml",
|
|
"package.json",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.vue",
|
|
"src/data/**/*.json",
|
|
"tsconfig.json",
|
|
"vite.config.ts",
|
|
"eslint.config.js"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|