2023-01-29 05:44:19 +00:00
|
|
|
{
|
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
2024-07-14 16:30:33 +00:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node16",
|
|
|
|
"esModuleInterop": true,
|
2023-01-29 05:44:19 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"inlineSourceMap":true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"stripInternal": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"pretty": true,
|
|
|
|
"declaration": true,
|
2024-07-14 16:30:33 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2023-01-29 05:44:19 +00:00
|
|
|
"typeRoots": [ "./typings", "./node_modules/@types"],
|
2024-07-14 16:30:33 +00:00
|
|
|
"outDir": "dist",
|
|
|
|
"rootDir": "src",
|
|
|
|
"preserveWatchOutput": true
|
2023-01-29 05:44:19 +00:00
|
|
|
},
|
|
|
|
"exclude": [
|
2024-07-14 16:30:33 +00:00
|
|
|
"*.js",
|
|
|
|
"*.ts",
|
2023-01-29 05:44:19 +00:00
|
|
|
"dist",
|
|
|
|
"node_modules",
|
|
|
|
"test"
|
2024-07-14 16:30:33 +00:00
|
|
|
],
|
|
|
|
"references": [
|
|
|
|
{ "path": "../../libs/midway-flyway-js" },
|
2024-07-20 06:27:41 +00:00
|
|
|
{ "path": "../../libs/lib-k8s" },
|
|
|
|
{ "path": "../../libs/lib-huawei" },
|
2024-07-14 16:30:33 +00:00
|
|
|
{ "path": "../../plugins/plugin-cert" },
|
|
|
|
{ "path": "../../core/acme-client" },
|
|
|
|
{ "path": "../../core/pipeline" }
|
2023-01-29 05:44:19 +00:00
|
|
|
]
|
|
|
|
}
|