mirror of
https://github.com/Rohithgilla12/data-peek
synced 2026-04-21 21:07:17 +00:00
- Add @data-peek/shared path mapping to tsconfig.node.json and tsconfig.web.json to fix module resolution errors - Fix unescaped quote entities in json-cell-value.tsx (JSX) - Remove unused parameters in sql-editor.tsx getWorker function - Apply prettier formatting to resolve lint warnings
27 lines
608 B
JSON
27 lines
608 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
|
|
"include": [
|
|
"src/renderer/src/env.d.ts",
|
|
"src/renderer/src/**/*",
|
|
"src/renderer/src/**/*.tsx",
|
|
"src/preload/*.d.ts",
|
|
"../../packages/shared/src/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/renderer/src/*"],
|
|
"@renderer/*": [
|
|
"src/renderer/src/*"
|
|
],
|
|
"@shared/*": [
|
|
"../../packages/shared/src/*"
|
|
],
|
|
"@data-peek/shared": [
|
|
"../../packages/shared/src/index.ts"
|
|
]
|
|
}
|
|
}
|
|
}
|