amis2/tsconfig.json
liaoxuezhi 18030b5415
chore: 修复测试用例报错 (#4021)
* chore: 调整测试用例

* chore: 调整测试用例

* 补充测试用

* chore: 修复测试用例报错

* chore: 修复测试用例报错

* 更新 snapshot
2022-04-12 14:22:39 +08:00

34 lines
848 B
JSON

{
"compilerOptions": {
"outDir": "output/",
"module": "commonjs",
"target": "es5",
"lib": ["ES6", "DOM", "ES2015", "ES2021"],
"sourceMap": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "",
"importHelpers": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceRoot": "",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"typeRoots": ["./node_modules/@types", "./types"],
"skipLibCheck": true
},
"include": ["src/**/*", "examples/**/*"],
"exclude": [
"node_modules",
"acceptance-tests",
"webpack",
"jest",
"jest_cache"
],
"types": ["node", "typePatches", "@testing-library/jest-dom"]
}