mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
1. Created separate tsconfig files for tests and prod code, including the test files in the test config. 2. Fixed linting error in DBEditTimeChartForm found while running local linting. 3. Excluded coverage CSS from the style lint task. 4. Updated app Dockerfile with test configuration and ran locally to ensure it was working. Ref: HDX-1502
30 lines
778 B
JSON
30 lines
778 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": 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"],
|
|
"exclude": ["node_modules", "**/*.test.ts", "**/*.test.tsx"]
|
|
}
|