amis2/tsconfig.json

34 lines
986 B
JSON
Raw Normal View History

2019-04-30 11:11:25 +08:00
{
"compilerOptions": {
2022-06-01 15:06:00 +08:00
"outDir": "lib",
"rootDir": "./",
2019-04-30 11:11:25 +08:00
"module": "commonjs",
"target": "es5",
"lib": ["ES6", "DOM", "ES2015", "ES2021"],
2019-04-30 11:11:25 +08:00
"jsx": "react",
"moduleResolution": "node",
"importHelpers": true,
2019-06-11 14:58:28 +08:00
"esModuleInterop": true,
2019-06-10 22:53:21 +08:00
"allowSyntheticDefaultImports": true,
"sourceRoot": "",
2019-04-30 11:11:25 +08:00
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2022-06-01 15:06:00 +08:00
"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"]
}
2019-04-30 11:11:25 +08:00
},
2022-06-01 15:06:00 +08:00
"types": ["typePatches"],
"references": [{"path": "packages/amis"}],
"include": ["**.ts", "**.tsx", "packages/amis-ui/src/custom.d.ts"]
2020-05-27 19:31:50 +08:00
}