mirror of
https://github.com/certd/certd.git
synced 2026-06-18 23:47:36 +08:00
52a167c647
perf: 完善文档,完善部分types perf: 优化d.ts类型 perf: 日期增加week、month、year、quarter类型 feat: resetCrudOptions 示例 feat: tabs快捷查询组件 fix: 行编辑支持多级表头 https://github.com/fast-crud/fast-crud/issues/143 perf: antdv 增加自定义表头示例 https://github.com/fast-crud/fast-crud/issues/141 perf: 表单下方按钮支持context https://github.com/fast-crud/fast-crud/issues/142
48 lines
983 B
JSON
48 lines
983 B
JSON
{
|
|
"compilerOptions": {
|
|
// 这样就可以对 `this` 上的数据属性进行更严格的推断`
|
|
"noImplicitAny": true,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictNullChecks" :false,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"outDir": "./dist/ts",
|
|
"types": [
|
|
"mocha",
|
|
"chai",
|
|
"node",
|
|
"unplugin-vue-define-options/macros-global"
|
|
],
|
|
"paths": {
|
|
"/@/*": ["src/*"],
|
|
"/src/*": ["src/*"],
|
|
"/#/*": ["types/*"]
|
|
},
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|