mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
47 lines
839 B
JSON
47 lines
839 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,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"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"
|
|
]
|
|
}
|