amis2/tsconfig.json
吴多益 ef9ada9783
feat: office-viewer 支持 sdt、footnote、endnote,包名换成 ooxml-viewer (#6509)
* 支持嵌套 sdt

* 初步支持 footnote 和 endnote

* 修复默认展示问题

* 初步支持 footnote 和 endnote

* 换包名
2023-04-03 12:53:44 +08:00

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"
]
}