28 lines
770 B
JSON
28 lines
770 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"strict": true,
|
||
|
|
"jsx": "preserve",
|
||
|
|
"jsxImportSource": "vue",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"]
|
||
|
|
},
|
||
|
|
"types": ["node", "vite/client"]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx"],
|
||
|
|
"exclude": ["node_modules", "dist", "src/router copy"],
|
||
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
||
|
|
}
|