mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
35 lines
973 B
JSON
35 lines
973 B
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,
|
|
|
|
"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": [{"path": "packages/amis"}],
|
|
"include": ["**.ts", "**.tsx", "packages/amis-ui/src/custom.d.ts"]
|
|
}
|