25 lines
667 B
JSON
25 lines
667 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"target": "esnext",
|
||
|
"useDefineForClassFields": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"strict": true,
|
||
|
"jsx": "preserve",
|
||
|
"jsxFactory": "h",
|
||
|
"jsxFragmentFactory": "Fragment",
|
||
|
"sourceMap": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"esModuleInterop": true,
|
||
|
"lib": ["esnext", "dom"],
|
||
|
"baseUrl": "./",
|
||
|
"paths": {
|
||
|
"@/*": ["./src/*"]
|
||
|
},
|
||
|
"skipLibCheck": true,
|
||
|
"typeRoots": ["./node_modules/@types"]
|
||
|
},
|
||
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "auto-imports.d.ts", "components.d.ts"]
|
||
|
}
|