mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-13 09:41:57 +00:00
20 lines
415 B
JSON
20 lines
415 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"strictNullChecks": true,
|
|
"inlineSources": false,
|
|
"lib": ["es6"],
|
|
"downlevelIteration": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"outDir": "./lib",
|
|
"types": ["node"],
|
|
"baseUrl": "." /* Base directory to resolve non-absolute module names. */
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|