mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
88ff7c8912
* feat: 添加 Combo InputTable ui 组件 * feat: 添加 Combo InputTable ui 组件 * 改成用 field.id * 顺便把版本设置改成一个不处理也不报错的写法
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "./",
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": ["ES6", "DOM", "ES2015", "ES2021"],
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceRoot": "",
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"skipLibCheck": true,
|
|
"composite": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"amis-core": ["./packages/amis-core/src/index.tsx"],
|
|
"amis-formula": ["./packages/amis-formula/src/index.ts"],
|
|
"amis-ui": ["./packages/amis-ui/src/index.tsx"],
|
|
"amis": ["./packages/amis/src/index.tsx"]
|
|
}
|
|
},
|
|
"types": ["typePatches"],
|
|
"references": [],
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.jsx",
|
|
"scripts/fis3plugin.ts",
|
|
"scripts/markdownPlugin.ts",
|
|
"scripts/mockApiPlugin.ts",
|
|
"packages/amis-ui/src/custom.d.ts"
|
|
]
|
|
}
|