laf/services/runtime-exporter/tsconfig.json
limbo 44c29bdbc2
feat(services): add runtime metrics exporter (#1619)
* feat(runtime-exporter): init

* optimize dockerfile

* chore

* chore

* chore

* chore

* chore

* chore

* refactor

* chore

* chore

* chore

* chore

* chore

* chore

* chore

* add ServiceMonitor to runtime-exporter build

* test

* fix

* chore

---------

Co-authored-by: lim <lim@example.com>
2023-11-07 11:12:05 +08:00

33 lines
745 B
JSON

{
"compileOnSave": true,
"compilerOptions": {
"allowJs": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"declaration": true,
"module": "NodeNext",
"target": "ES2022",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"declarationMap": false,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"pretty": false,
"removeComments": true,
"sourceMap": true,
"stripInternal": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"alwaysStrict": true,
"lib": [
"ES2022"
]
},
"include": [
"src/**/*",
],
}