mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-02 12:40:46 +08:00

* bug: jest is now fixed * chore: files are included for the eslint * chore: build is fixed * test: jest test are fixed
27 lines
699 B
JSON
27 lines
699 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"noImplicitAny": true,
|
|
"module": "esnext",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"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" }]
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["./src", "./babel.config.js", "./jest.config.ts"]
|
|
}
|