You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
535 B
22 lines
535 B
6 months ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"esModuleInterop": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"lib": ["dom", "esnext"],
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"noEmit": true,
|
||
|
"paths": {
|
||
|
"@/*": ["./src/*"]
|
||
|
},
|
||
|
"resolveJsonModule": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"target": "esnext",
|
||
|
"useDefineForClassFields": true
|
||
|
},
|
||
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
||
|
"references": [{ "path": "./tsconfig.node.json" }]
|
||
|
}
|