mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
28 lines
772 B
JSON
28 lines
772 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "output/",
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": ["ES6", "DOM", "ES2015", "ES2021"],
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"rootDir": "./src",
|
|
"importHelpers": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceRoot": "src",
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"typeRoots": ["./node_modules/@types", "./types"],
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "acceptance-tests", "webpack", "jest"],
|
|
"types": ["node", "typePatches"]
|
|
}
|