amis2/tsconfig.json
HongYang ac78adec1d
fix: calendar长日期放大模式显示问题 (#3481)
* fix: calendar长日期放大模式显示问题

* fix: 修改

Co-authored-by: hongyang03 <hongyang03@baidu.com>
2022-01-25 10:52:55 +08:00

28 lines
795 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"]
}