Files
crawlab/frontend/tsconfig.json
Marvin Zhang c191afcc6d code cleanup
2021-11-01 12:14:18 +08:00

42 lines
723 B
JSON

{
"compilerOptions": {
"declaration": true,
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"__test__/**/*.ts",
"__test__/**/*.tsx"
],
"exclude": [
"node_modules",
"src/**/*.js"
]
}