1
0
mirror of synced 2025-12-07 22:28:34 +08:00
Files
vxe-table/tsconfig.json
xuliangzhan 1b05cbbc55 工程优化
2020-02-21 17:04:31 +08:00

40 lines
703 B
JSON

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