mirror of
https://github.com/SigNoz/signoz.git
synced 2026-02-03 08:33:26 +00:00
Some checks failed
build-staging / prepare (push) Has been cancelled
build-staging / js-build (push) Has been cancelled
build-staging / go-build (push) Has been cancelled
build-staging / staging (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
* feature: init open api ts code gen * chore: update custom instance to a separate axios instance * chore: update code owners * chore: set up node version in CI * fix: node version * chore: update jsci.yaml * chore: update goci.yaml * chore: rename instance * chore: resolve comments
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"outDir": "./dist/",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": 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",
|
|
"paths": {
|
|
"@constants/*": ["/container/OnboardingContainer/constants/*"]
|
|
},
|
|
"downlevelIteration": true,
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-plugin-css-modules"
|
|
}
|
|
],
|
|
"types": ["node", "jest"]
|
|
},
|
|
"exclude": ["node_modules", "src/parser/*.ts", "src/parser/TraceOperatorParser/*.ts", "orval.config.ts"],
|
|
"include": [
|
|
"./src",
|
|
"./src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.d.ts",
|
|
"./babel.config.js",
|
|
"./jest.config.ts",
|
|
"./.eslintrc.js",
|
|
"./__mocks__",
|
|
"./conf/default.conf",
|
|
"./public",
|
|
"./commitlint.config.ts",
|
|
"./webpack.config.js",
|
|
"./webpack.config.prod.js",
|
|
"./jest.setup.ts",
|
|
"./tests/**.ts",
|
|
"./**/*.d.ts",
|
|
"./playwright.config.ts",
|
|
"./e2e/**/*.ts"
|
|
]
|
|
}
|