mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
27 lines
654 B
JSON
27 lines
654 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
|
|
},
|
|
"types": ["typePatches"],
|
|
"references": [{"path": "packages/amis"}]
|
|
}
|