mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
ef9ada9783
* 支持嵌套 sdt * 初步支持 footnote 和 endnote * 修复默认展示问题 * 初步支持 footnote 和 endnote * 换包名
46 lines
1.3 KiB
JSON
46 lines
1.3 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,
|
|
"downlevelIteration": 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"],
|
|
"ooxml-viewer": ["./packages/ooxml-viewer/src/index.ts"],
|
|
"amis-editor-core": ["./packages/amis-editor-core/src/index.ts"],
|
|
"amis-editor": ["./packages/amis-editor/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"
|
|
]
|
|
}
|