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
18 lines
444 B
JSON
18 lines
444 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
|
|
"include": [
|
|
"electron.vite.config.*",
|
|
"src/main/**/*",
|
|
"src/preload/**/*",
|
|
"../../packages/shared/src/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"types": ["electron-vite/node"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@shared/*": ["../../packages/shared/src/*"],
|
|
"@data-peek/shared": ["../../packages/shared/src/index.ts"]
|
|
}
|
|
}
|
|
}
|