amis2/tsconfig.json
2022-06-01 15:06:00 +08:00

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