diff options
author | Kirill Dubovitskiy <kirill2003de@gmail.com> | 2023-08-08 22:50:49 -0700 |
---|---|---|
committer | Kirill Dubovitskiy <kirill2003de@gmail.com> | 2023-08-08 22:59:22 -0700 |
commit | 7c049df2e487972d031f74737182f7d5a631466e (patch) | |
tree | 37d7ce10c12458ecc86d05f5d288f7a1284dc2ea /extension/react-app/package.json | |
parent | 5295d1214be20f49aeb7d525420b880e5721b87e (diff) | |
download | sncontinue-7c049df2e487972d031f74737182f7d5a631466e.tar.gz sncontinue-7c049df2e487972d031f74737182f7d5a631466e.tar.bz2 sncontinue-7c049df2e487972d031f74737182f7d5a631466e.zip |
Fixing up react-app build
- Added to the build step in the vscode-extension:build task
- Added inline source maps so its easier to track down issues when using console.log / debugger in chrome dev tools within vscode
Diffstat (limited to 'extension/react-app/package.json')
-rw-r--r-- | extension/react-app/package.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/react-app/package.json b/extension/react-app/package.json index b4762990..38beb742 100644 --- a/extension/react-app/package.json +++ b/extension/react-app/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "vite", - "build": "tsc && vite build --sourcemap", + "build": "tsc && vite build --sourcemap 'inline'", "preview": "vite preview" }, "dependencies": { @@ -39,4 +39,4 @@ "typescript": "^4.9.3", "vite": "^4.1.0" } -} +}
\ No newline at end of file |