1
0
mirror of synced 2025-11-06 11:20:40 +08:00
Files
vxe-table/tsconfig.json
xuliangzhan 9bc4985a4f 重构组件
2024-05-26 12:41:17 +08:00

47 lines
909 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env",
"resize-observer-browser"
],
"paths": {
"@/*": [
"examples/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"examples/**/*.ts",
"examples/**/*.tsx",
"examples/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}