amis2/tsconfig.json

28 lines
724 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"}],
"include": ["**.ts", "**.tsx", "packages/amis-ui/src/custom.d.ts"]
}