hyperdx/packages/api/tsconfig.json
Shorpo 0824ae76d2
Chart alerts: Add support for chart alerts in alerts API (#104)
Add support for chart alerts in alerts API
2023-11-16 03:59:32 +00:00

24 lines
622 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": ["ES2022", "dom"],
"module": "Node16",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"outDir": "build",
"skipLibCheck": false,
"sourceMap": true,
"strict": true,
"target": "ES2022"
},
"include": ["src"]
}