hyperdx/tsconfig.base.json

23 lines
576 B
JSON
Raw Permalink Normal View History

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