mirror of
https://github.com/Gimanh/taskview-community.git
synced 2026-09-11 21:38:56 +00:00
36 lines
580 B
JSON
36 lines
580 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.vue",
|
|
"src/**/*.d.ts",
|
|
"src/types/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"src/**/__tests__/*"
|
|
],
|
|
"compilerOptions": {
|
|
"types": [
|
|
"node"
|
|
],
|
|
"module": "esnext",
|
|
"composite": true,
|
|
// "esModuleInterop": true,
|
|
// "skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*",
|
|
],
|
|
"~/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM",
|
|
"esnext.promise"
|
|
]
|
|
}
|
|
} |