mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-11 18:42:56 +00:00
20 lines
542 B
JSON
20 lines
542 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
// Enable strictest settings like strictNullChecks & noImplicitAny.
|
|
"strict": false,
|
|
// Allow json import
|
|
"resolveJsonModule": true,
|
|
// skip type checking of declaration files
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./packages",
|
|
"allowJs": true,
|
|
"outDir": "lib",
|
|
"lib": ["es2018"],
|
|
"module": "commonjs",
|
|
"target": "es2018"
|
|
},
|
|
"exclude": ["**/test", "**/lib", "**/dist", "**/es", "node_modules", "schemas"],
|
|
"include": ["src/**/*"]
|
|
}
|