Skip to content

Commit

Permalink
feat: source maps (#1609)
Browse files Browse the repository at this point in the history
  • Loading branch information
asvishnyakov authored Jan 21, 2025
1 parent 350f260 commit acec473
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import tsconfigPaths from 'vite-tsconfig-paths';

// https://vitejs.dev/config/
export default defineConfig({
build: {
sourcemap: true
},
plugins: [react(), tsconfigPaths(), svgr()],
resolve: {
alias: {
Expand Down
1 change: 1 addition & 0 deletions libs/copilot/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
Expand Down
2 changes: 1 addition & 1 deletion libs/react-client/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"preserveConstEnums": true,
"removeComments": true,
"skipLibCheck": true,
"sourceMap": false,
"sourceMap": true,
"strictNullChecks": true,
"target": "es5",
"types": ["node", "react"],
Expand Down

0 comments on commit acec473

Please sign in to comment.