cmc-web/webs/cop-web/tsconfig.json

33 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2024-08-20 12:11:31 +00:00
{
2024-08-21 01:17:14 +00:00
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": false,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"sourceMap": true,
"allowJs": true,
"baseUrl": ".",
"noImplicitAny": false,
"types": ["webpack-env"],
// "typeRoots": ["./node_modules/@types/", "./types"],
"paths": {
"@/*": ["src/*"],
"services/*": ["src/services/*"],
"@services/*": ["src/services/*"],
"utils/*": ["src/common/utils/*"],
"components/*": ["src/common/components/*"],
"hooks/*": ["src/common/hooks/*"],
"filters/*": ["src/common/filters/*"]
2024-08-20 12:11:31 +00:00
},
2024-08-21 01:17:14 +00:00
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
2024-08-24 09:04:54 +00:00
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx", "src/views/task/graph/maintain/components/index.js", "src/views/task/graph/software/components/index.js", "src/views/config/component-manage/create/options/index.js"],
2024-08-21 01:17:14 +00:00
"exclude": ["node_modules"]
}