mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-05 03:38:12 +00:00
16 lines
448 B
JSON
16 lines
448 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
|
|
},
|
|
"exclude": ["**/test", "**/lib", "**/dist", "**/es", "node_modules", "schemas"],
|
|
"include": ["src/**/*"]
|
|
}
|