mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-02 03:20:37 +08:00
40 lines
942 B
JSON
40 lines
942 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" }],
|
|
"types": ["cypress", "@testing-library/cypress", "node"]
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": [
|
|
"./src",
|
|
"./babel.config.js",
|
|
"./jest.config.ts",
|
|
"./.eslintrc.js",
|
|
"./__mocks__",
|
|
"./conf/default.conf",
|
|
"./public",
|
|
"./cypress",
|
|
"./commitlint.config.js",
|
|
"./webpack.config.js",
|
|
"./webpack.config.prod.js"
|
|
]
|
|
}
|