You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
949 B
JSON
32 lines
949 B
JSON
{
|
|
"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,
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"components/*": ["./src/components/*"],
|
|
"layouts/*": ["./src/layouts/*"],
|
|
"store/*": ["./src/store/*"],
|
|
"style/*": ["./src/style/*"],
|
|
"jetlinks-ui-components/es": ["./node_modules/jetlinks-ui-components/es/*"]
|
|
},
|
|
"types": ["ant-design-vue/typings/global", "vite/client"],
|
|
"suppressImplicitAnyIndexErrors": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
"references": [{ "path": "./tsconfig.node.json" }],
|
|
}
|