mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-25 19:40:24 +00:00
* feat: api keys crud - integration v0.1 * feat: add test cases * fix: add review comments * feat: api integration and ui updates * feat: update test cases * feat: update expiriesAt request payload * feat: ui feedback updates * feat: api keys crud - integration v0.1 * feat: add test cases * fix: add review comments * feat: api integration and ui updates * feat: update test cases * feat: update expiriesAt request payload * feat: ui feedback updates * feat: handle light mode styles * feat: hide pagination on single page * feat: do not show last used if not present or 0 * feat: show tooltip on role --------- Co-authored-by: Rajat Dabade <rajat@signoz.io>
66 lines
1.2 KiB
JSON
66 lines
1.2 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",
|
|
"paths": {
|
|
"@constants/*": [
|
|
"/container/OnboardingContainer/constants/*"
|
|
]
|
|
},
|
|
"downlevelIteration": true,
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-plugin-css-modules"
|
|
}
|
|
],
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"./src/container/OnboardingContainer/constants/*.ts"
|
|
],
|
|
"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"
|
|
]
|
|
} |