mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-11 18:42:56 +00:00
27 lines
657 B
JSON
27 lines
657 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2015", "dom"],
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": false,
|
|
"strictPropertyInitialization": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "createElement",
|
|
"importHelpers": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"sourceMap": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "lib"
|
|
},
|
|
"exclude": ["test", "lib", "es", "node_modules"],
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|