mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-09-19 16:53:12 +08:00

* feat: dashboard perf improvements * feat: remove console logs * fix: remove console.log * fix: update tests * fix: update tests --------- Co-authored-by: Srikanth Chekuri <srikanth.chekuri92@gmail.com>
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"outDir": "./dist/",
|
|
"noImplicitAny": true,
|
|
"module": "esnext",
|
|
"target": "es5",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"baseUrl": "./src",
|
|
"downlevelIteration": true,
|
|
"plugins": [{ "name": "typescript-plugin-css-modules" }],
|
|
"types": ["node", "jest"],
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": [
|
|
"./src",
|
|
"./src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts",
|
|
"./babel.config.js",
|
|
"./jest.config.ts",
|
|
"./.eslintrc.js",
|
|
"./__mocks__",
|
|
"./conf/default.conf",
|
|
"./public",
|
|
"./tests",
|
|
"./playwright.config.ts",
|
|
"./commitlint.config.ts",
|
|
"./webpack.config.js",
|
|
"./webpack.config.prod.js",
|
|
"./jest.setup.ts",
|
|
"./tests/**.ts",
|
|
"./**/*.d.ts"
|
|
]
|
|
}
|