Skip to content

Commit

Permalink
No longer use dynamic imports for monaco-vscode-api. Update vite conf…
Browse files Browse the repository at this point in the history
…iguration
  • Loading branch information
kaisalmen committed Sep 28, 2023
1 parent 636352d commit 1abe3de
Show file tree
Hide file tree
Showing 10 changed files with 247 additions and 279 deletions.
129 changes: 129 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"eslint-plugin-import": "~2.28.1",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-unused-imports": "~3.0.0",
"path-browserify": "~1.0.1",
"shx": "~0.3.4",
"tslib": "~2.6.2",
"typescript": "~5.2.2",
Expand All @@ -30,8 +29,8 @@
"watch": "tsc --build tsconfig.build.json --watch --verbose",
"lint": "eslint {**/src/**/*.ts,**/src/**/*.tsx,**/test/**/*.ts,**/test/**/*.tsx}",
"vite:build": "vite build",
"dev": "vite",
"dev:debug": "vite --debug --force",
"dev": "node --experimental-import-meta-resolve ./node_modules/vite/bin/vite.js",
"dev:debug": "node --experimental-import-meta-resolve ./node_modules/vite/bin/vite.js --debug --force",
"report:versions": "echo Reporting versions: && echo tsc: && tsc --version && echo npm: && npm --version && echo node: && node --version",
"build": "npm run report:versions && npm run build --workspaces",
"build:client": "npm run build --workspace packages/client",
Expand Down
Loading

0 comments on commit 1abe3de

Please sign in to comment.