Files
crawlab/frontend/tsconfig.base.json
2024-10-24 13:22:55 +08:00

41 lines
758 B
JSON

{
"compilerOptions": {
"declaration": true,
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"types": [
"vite/client"
],
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
],
"typeRoots": [
"src/interfaces"
]
},
"include": [
"src/shims-vue.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"__test__/**/*.spec.ts"
],
"exclude": [
"node_modules",
"src/**/*.js"
]
}