amis/packages/amis-ui/tsconfig.json

20 lines
388 B
JSON
Raw Normal View History

2022-06-01 15:06:00 +08:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "./",
"outDir": "./dist",
"typeRoots": [
"../../types",
"./node_modules/@types",
"../../node_modules/@types"
]
},
2022-06-01 15:30:44 +08:00
"include": [
"src/**/*",
"__tests__/**/*",
"src/custom.d.ts",
"../amis-core/src/utils/formula.ts"
],
2022-06-01 15:06:00 +08:00
"references": [{"path": "../amis-core"}]
}