21 lines
466 B
JSON
21 lines
466 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"strict": true,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"jsx": "preserve",
|
||
|
|
"allowJs": false,
|
||
|
|
"checkJs": false,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"types": ["node", "vite/client"],
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue"]
|
||
|
|
}
|