├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── rich-navigation.yml.off ├── .gitignore ├── .gitmodules ├── .lsifrc.json ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── License.txt ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── package.json ├── src ├── core │ ├── configuration.ts │ ├── env.ts │ ├── loaderEvents.ts │ ├── main.ts │ ├── moduleManager.ts │ ├── scriptLoader.ts │ ├── tsconfig.json │ └── utils.ts ├── loader.d.ts └── loader.js ├── tests ├── loader.test.js ├── loader.test.ts ├── ms-specific │ └── tests │ │ ├── fallback_double_fallback │ │ ├── _reporter.js │ │ ├── _test.js │ │ └── doublefoo2.js │ │ ├── fallback_original_works │ │ ├── _reporter.js │ │ ├── _test.js │ │ ├── a.js │ │ └── alt.js │ │ └── fallback_single_fallback │ │ ├── _reporter.js │ │ ├── _test.js │ │ └── foofallback.js ├── node-specific │ ├── _control.js │ ├── _loader.js │ ├── exporting-function │ │ ├── _test.js │ │ └── a.js │ ├── has-dirname │ │ ├── _test.js │ │ └── a.js │ ├── simple │ │ ├── _test.js │ │ └── folder │ │ │ └── foo.js │ ├── throwing-amd │ │ ├── _test.js │ │ └── a.js │ ├── what-is-this │ │ ├── _test.js │ │ └── a.js │ └── z-cached-data-create │ │ ├── _test.js │ │ ├── a.js │ │ └── cache-dir │ │ └── .gitkeep ├── qunit │ ├── qunit.css │ ├── qunit.d.ts │ └── qunit.js ├── run-tests.htm └── run-tests.js └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/rich-navigation.yml.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/.github/workflows/rich-navigation.yml.off -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lsifrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/.lsifrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/package.json -------------------------------------------------------------------------------- /src/core/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/src/core/configuration.ts -------------------------------------------------------------------------------- /src/core/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/src/core/env.ts -------------------------------------------------------------------------------- /src/core/loaderEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/src/core/loaderEvents.ts -------------------------------------------------------------------------------- /src/core/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/src/core/main.ts -------------------------------------------------------------------------------- /src/core/moduleManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/src/core/moduleManager.ts -------------------------------------------------------------------------------- /src/core/scriptLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/src/core/scriptLoader.ts -------------------------------------------------------------------------------- /src/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/src/core/tsconfig.json -------------------------------------------------------------------------------- /src/core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/src/core/utils.ts -------------------------------------------------------------------------------- /src/loader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/src/loader.d.ts -------------------------------------------------------------------------------- /src/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/src/loader.js -------------------------------------------------------------------------------- /tests/loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/loader.test.js -------------------------------------------------------------------------------- /tests/loader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/loader.test.ts -------------------------------------------------------------------------------- /tests/ms-specific/tests/fallback_double_fallback/_reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/ms-specific/tests/fallback_double_fallback/_reporter.js -------------------------------------------------------------------------------- /tests/ms-specific/tests/fallback_double_fallback/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/ms-specific/tests/fallback_double_fallback/_test.js -------------------------------------------------------------------------------- /tests/ms-specific/tests/fallback_double_fallback/doublefoo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/ms-specific/tests/fallback_double_fallback/doublefoo2.js -------------------------------------------------------------------------------- /tests/ms-specific/tests/fallback_original_works/_reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/ms-specific/tests/fallback_original_works/_reporter.js -------------------------------------------------------------------------------- /tests/ms-specific/tests/fallback_original_works/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/ms-specific/tests/fallback_original_works/_test.js -------------------------------------------------------------------------------- /tests/ms-specific/tests/fallback_original_works/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/ms-specific/tests/fallback_original_works/a.js -------------------------------------------------------------------------------- /tests/ms-specific/tests/fallback_original_works/alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/ms-specific/tests/fallback_original_works/alt.js -------------------------------------------------------------------------------- /tests/ms-specific/tests/fallback_single_fallback/_reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/ms-specific/tests/fallback_single_fallback/_reporter.js -------------------------------------------------------------------------------- /tests/ms-specific/tests/fallback_single_fallback/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/ms-specific/tests/fallback_single_fallback/_test.js -------------------------------------------------------------------------------- /tests/ms-specific/tests/fallback_single_fallback/foofallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/ms-specific/tests/fallback_single_fallback/foofallback.js -------------------------------------------------------------------------------- /tests/node-specific/_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/_control.js -------------------------------------------------------------------------------- /tests/node-specific/_loader.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../../src/loader'); -------------------------------------------------------------------------------- /tests/node-specific/exporting-function/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/exporting-function/_test.js -------------------------------------------------------------------------------- /tests/node-specific/exporting-function/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/exporting-function/a.js -------------------------------------------------------------------------------- /tests/node-specific/has-dirname/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/has-dirname/_test.js -------------------------------------------------------------------------------- /tests/node-specific/has-dirname/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/has-dirname/a.js -------------------------------------------------------------------------------- /tests/node-specific/simple/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/simple/_test.js -------------------------------------------------------------------------------- /tests/node-specific/simple/folder/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/simple/folder/foo.js -------------------------------------------------------------------------------- /tests/node-specific/throwing-amd/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/throwing-amd/_test.js -------------------------------------------------------------------------------- /tests/node-specific/throwing-amd/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/throwing-amd/a.js -------------------------------------------------------------------------------- /tests/node-specific/what-is-this/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/what-is-this/_test.js -------------------------------------------------------------------------------- /tests/node-specific/what-is-this/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/what-is-this/a.js -------------------------------------------------------------------------------- /tests/node-specific/z-cached-data-create/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/z-cached-data-create/_test.js -------------------------------------------------------------------------------- /tests/node-specific/z-cached-data-create/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/node-specific/z-cached-data-create/a.js -------------------------------------------------------------------------------- /tests/node-specific/z-cached-data-create/cache-dir/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qunit/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/qunit/qunit.css -------------------------------------------------------------------------------- /tests/qunit/qunit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/qunit/qunit.d.ts -------------------------------------------------------------------------------- /tests/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/qunit/qunit.js -------------------------------------------------------------------------------- /tests/run-tests.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/run-tests.htm -------------------------------------------------------------------------------- /tests/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tests/run-tests.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-loader/HEAD/tsconfig.json --------------------------------------------------------------------------------