mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
18030b5415
* chore: 调整测试用例 * chore: 调整测试用例 * 补充测试用 * chore: 修复测试用例报错 * chore: 修复测试用例报错 * 更新 snapshot
34 lines
848 B
JSON
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"]
|
|
}
|