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.
27 lines
581 B
27 lines
581 B
{ |
|
"compilerOptions": { |
|
"target": "ESNext", |
|
"useDefineForClassFields": true, |
|
"module": "ESNext", |
|
"moduleResolution": "Node", |
|
"strict": true, |
|
"jsx": "preserve", |
|
"sourceMap": true, |
|
"resolveJsonModule": true, |
|
"isolatedModules": true, |
|
"esModuleInterop": true, |
|
"lib": ["ESNext", "DOM"], |
|
"skipLibCheck": true, |
|
"paths": { |
|
"@/*": ["./src/*"] |
|
} |
|
}, |
|
"include": [ |
|
"src/**/*.ts", |
|
"src/**/*.d.ts", |
|
"src/**/*.tsx", |
|
"src/**/*.vue", |
|
"types/**/*.d.ts" |
|
], |
|
"references": [{ "path": "./tsconfig.node.json" }] |
|
}
|
|
|