28 lines
549 B
JSON
28 lines
549 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"ESNext", "DOM"
|
|
],
|
|
"types": ["vite/client"],
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
},
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"auto-imports.d.ts",
|
|
"components.d.ts"
|
|
]
|
|
} |