28 lines
639 B
JSON
28 lines
639 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "config/unplugin/*.d.ts", "src/**/*/*.tsx"],
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"types": ["unplugin-vue-define-options/macros-global"]
|
|
},
|
|
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.config.json"
|
|
}
|
|
]
|
|
}
|