vscode/build/.webignore

60 lines
1.4 KiB
Plaintext
Raw Normal View History

2020-06-22 15:41:43 +08:00
# cleanup rules for web node modules, .gitignore style
2020-06-29 20:23:16 +08:00
**/*.txt
**/*.json
**/*.md
**/*.d.ts
**/*.js.map
**/LICENSE
**/CONTRIBUTORS
2020-10-26 05:35:23 +08:00
**/docs/**
**/example/**
**/examples/**
2020-06-29 20:23:16 +08:00
jschardet/index.js
2020-06-22 15:41:43 +08:00
jschardet/src/**
2024-10-01 14:19:15 +08:00
jschardet/dist/jschardet.js
2020-06-22 15:41:43 +08:00
vscode-textmate/webpack.config.js
2023-11-02 05:47:59 +08:00
@xterm/xterm/src/**
2020-06-22 15:41:43 +08:00
@xterm/addon-clipboard/src/**
@xterm/addon-clipboard/out/**
2023-11-02 05:47:59 +08:00
@xterm/addon-image/src/**
@xterm/addon-image/out/**
2023-05-14 23:09:17 +08:00
@xterm/addon-ligatures/src/**
@xterm/addon-ligatures/out/**
2023-11-02 05:47:59 +08:00
@xterm/addon-search/src/**
@xterm/addon-search/out/**
@xterm/addon-search/fixtures/**
2020-06-22 15:41:43 +08:00
2023-11-02 05:47:59 +08:00
@xterm/addon-unicode11/src/**
@xterm/addon-unicode11/out/**
2020-06-22 15:41:43 +08:00
2023-11-02 05:47:59 +08:00
@xterm/addon-webgl/src/**
@xterm/addon-webgl/out/**
2021-07-20 05:26:16 +08:00
# This makes sure the model is included in the package
!@vscode/vscode-languagedetection/model/**
Re-merge introduction of tree sitter (#223474) * Make space for tree sitter * Add the tree sitter wasm file * Very naive tree-sitter syntax highlighting for html, with a layer breaker * Update tree when content changes * WIP for making abstract tokens class * Handle theme changes * Replace entire text model value with parse callback * Perf improvements * Add tree-sitter-typescript * Add typescript + better initial parsing * Refactor into tree parsing service and fix flaw in parse callback * Remove things that aren't the parser service * Add yielding * Remove changes that aren't required for PR * Remove more file changes * Reduce yield to 50 ms * Fix incremental parsing * Try update node-abi * Revert "Try update node-abi" This reverts commit df28801e31e3d672a0754eb9edc55a7208d7cde8. * Update text buffer chunk api * fix build * Remove tree-sitter dependency * Adopt new, as yet unpublished, `@vscode/tree-sitter-wasm` package * Use published `@vscode/tree-sitter-wasm` package * Break `TreeSitterTree` and `TreeSitterParserService` into better pieces and: - document the order of editor changes - use service injection where `TextModel` is constructed * Fix tests * Remove unneeded import * Fix missing tree-sitter-wasm in web and remote * Make package.jsons match * Add @vscode/tree-sitter-wasm to web loader config * Try using importAMDNodeModule * PR feedback * Add race condition test for changing language while loading language * Use same timeout * Queue content changes * Remove override dispose * Move queue into TreeSitterTree --------- Co-authored-by: Peng Lyu <penn.lv@gmail.com>
2024-07-29 17:31:28 +08:00
!@vscode/tree-sitter-wasm/wasm/**
2022-11-03 23:36:45 +08:00
# Ensure only the required telemetry pieces are loaded in web to reduce bundle size
@microsoft/1ds-core-js/**
@microsoft/1ds-post-js/**
@microsoft/applicationinsights-core-js/**
@microsoft/applicationinsights-shims/**
!@microsoft/1ds-core-js/dist/ms.core.min.js
!@microsoft/1ds-core-js/bundle/ms.core.min.js
2022-11-03 23:36:45 +08:00
!@microsoft/1ds-post-js/dist/ms.post.min.js
!@microsoft/1ds-post-js/bundle/ms.post.min.js
2022-11-03 23:36:45 +08:00
!@microsoft/applicationinsights-core-js/browser/applicationinsights-core-js.min.js
!@microsoft/applicationinsights-shims/dist/umd/applicationinsights-shims.min.js
vsda/**
!vsda/rust/web/**