├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml ├── issue_template.md ├── stale.yml └── workflows │ ├── push.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── HISTORY.md ├── LICENSE ├── README.md ├── REFERENCES.md ├── RELEASING.md ├── SECURITY.md ├── examples ├── fork-ts-checker-webpack-plugin │ ├── .eslintrc.js │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── package.json │ ├── src │ │ ├── app.tsx │ │ ├── components │ │ │ └── layout.tsx │ │ ├── index.html │ │ └── index.tsx │ ├── tsconfig.json │ ├── webpack.config.js │ └── yarn.lock ├── project-references-example │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── packages │ │ ├── animals │ │ │ ├── animal.ts │ │ │ ├── dog.tsx │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── core │ │ │ ├── package.json │ │ │ ├── tsconfig.json │ │ │ └── utilities.ts │ │ └── zoo │ │ │ ├── package.json │ │ │ ├── tsconfig.json │ │ │ └── zoo.tsx │ ├── src │ │ └── index.tsx │ ├── tsconfig-base.json │ ├── tsconfig.json │ ├── webpack.config.js │ └── yarn.lock └── vanilla │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ ├── index.ts │ └── render.ts │ ├── tsconfig.json │ ├── webpack.config.js │ └── yarn.lock ├── index.js ├── package.json ├── renovate.json ├── src ├── after-compile.ts ├── compilerSetup.ts ├── config.ts ├── constants.ts ├── index.ts ├── instance-cache.ts ├── instances.ts ├── interfaces.ts ├── logger.ts ├── resolver.ts ├── servicesHost.ts ├── stringify-loader.ts ├── tsconfig.json ├── utils.ts └── watch-run.ts ├── test ├── .prettierrc ├── aliasLoader.js ├── comparison-tests │ ├── README.md │ ├── aliasResolution │ │ ├── app.ts │ │ ├── common │ │ │ └── components │ │ │ │ └── myComponent.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── patch0 │ │ │ └── common │ │ │ │ └── components │ │ │ │ └── myComponent.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── allowJs-entryFileIsJs │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── src │ │ │ └── index.js │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── allowJs-ts-check │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── src │ │ │ ├── error1.js │ │ │ ├── error2.js │ │ │ └── index.js │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── appendSuffixTo │ │ ├── component.vue │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── helper.ts │ │ ├── index.vue │ │ ├── module.d.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── appendSuffixToWatch │ │ ├── component.vue │ │ ├── entry1.ts │ │ ├── entry2.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.entry1.js │ │ │ ├── bundle.entry2.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.entry1.js │ │ │ │ ├── bundle.entry2.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.entry1.js │ │ │ ├── bundle.entry2.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.entry1.js │ │ │ │ ├── bundle.entry2.js │ │ │ │ └── output.txt │ │ ├── module.d.ts │ │ ├── patch0 │ │ │ └── entry1.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── babel-es6resolveParent │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── index.tsx │ │ ├── submodule │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── babel-issue81 │ │ ├── a.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── babel-issue92 │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── submodule │ │ │ └── submodule.tsx │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── basic │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── externalLib.d.ts │ │ │ └── externalLib.js │ │ ├── patch0 │ │ │ └── app.ts │ │ ├── patch1 │ │ │ └── app.ts │ │ ├── submodule │ │ │ └── submodule.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── codeSplitting │ │ ├── README.md │ │ ├── a.ts │ │ ├── app.ts │ │ ├── b.ts │ │ ├── c.ts │ │ ├── d.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── c_ts-d_ts.bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── c_ts-d_ts.bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── c_ts-d_ts.bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── c_ts-d_ts.bundle.js │ │ │ └── output.txt │ │ ├── require.d.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── colors │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── conditionalRequire │ │ ├── README.md │ │ ├── app.ts │ │ ├── debug.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── globals.d.ts │ │ ├── require.d.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── copySync.js │ ├── create-and-execute-test.js │ ├── customTransformer │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── patch0 │ │ │ └── app.ts │ │ ├── patch1 │ │ │ └── app.ts │ │ ├── tsconfig.json │ │ ├── uppercaseStringLiteralTransformer.js │ │ └── webpack.config.js │ ├── customTransformerUsingPathString │ │ ├── app.ts │ │ ├── customerTransformers.js │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── patch0 │ │ │ └── app.ts │ │ ├── patch1 │ │ │ └── app.ts │ │ ├── tsconfig.json │ │ ├── uppercaseStringLiteralTransformer.js │ │ └── webpack.config.js │ ├── declarationDeps │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── hello.d.ts │ │ ├── references.d.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── declarationOutput │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── .output │ │ │ │ ├── app.d.ts │ │ │ │ └── sub │ │ │ │ │ └── dep.d.ts │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── .output │ │ │ │ ├── app.d.ts │ │ │ │ └── sub │ │ │ │ │ └── dep.d.ts │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── sub │ │ │ └── dep.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── declarationOutputAllowJs │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── .output │ │ │ │ ├── app.d.ts │ │ │ │ └── sub │ │ │ │ │ └── dep.d.ts │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── .output │ │ │ │ ├── app.d.ts │ │ │ │ └── sub │ │ │ │ │ └── dep.d.ts │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── sub │ │ │ └── dep.js │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── declarationOutputWithMaps │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── .output │ │ │ │ ├── app.d.ts │ │ │ │ ├── app.d.ts.map │ │ │ │ └── sub │ │ │ │ │ ├── dep.d.ts │ │ │ │ │ └── dep.d.ts.map │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── .output │ │ │ │ ├── app.d.ts │ │ │ │ ├── app.d.ts.map │ │ │ │ └── sub │ │ │ │ │ ├── dep.d.ts │ │ │ │ │ └── dep.d.ts.map │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── sub │ │ │ └── dep.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── declarationWatch │ │ ├── app.ts │ │ ├── dep.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── patch0 │ │ │ └── thing.d.ts │ │ ├── patch1 │ │ │ └── thing.d.ts │ │ ├── thing.d.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── dependencyErrors │ │ ├── app.ts │ │ ├── dep1.ts │ │ ├── dep2.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── patch0 │ │ │ └── dep1.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── errorFormatter │ │ ├── app.ts │ │ ├── common │ │ │ └── components │ │ │ │ └── myComponent.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── errors │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── es5 │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── es6 │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── es6codeSplitting │ │ ├── README.md │ │ ├── a.ts │ │ ├── app.ts │ │ ├── b.ts │ │ ├── c.ts │ │ ├── d.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── c_ts-d_ts.bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── c_ts-d_ts.bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── c_ts-d_ts.bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── c_ts-d_ts.bundle.js │ │ │ └── output.txt │ │ ├── require.d.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── es6withCJS │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── externals │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── hello.d.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── getProgram.js │ ├── ignoreDiagnostics │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── importsWatch │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── foo.ts │ │ ├── patch0 │ │ │ └── foo.ts │ │ ├── patch1 │ │ │ └── foo.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── instance │ │ ├── a.ts │ │ ├── b.ts │ │ ├── expectedOutput-5.7 │ │ │ └── err.txt │ │ ├── expectedOutput-5.9 │ │ │ └── err.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ └── err.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ └── err.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── issue372 │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── foo.ts │ │ ├── node_modules │ │ │ ├── @types │ │ │ │ └── a │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── package.json │ │ │ └── a │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── patch0 │ │ │ └── app.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── issue441 │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── foo.ts │ │ ├── patch0 │ │ │ └── styles.d.ts │ │ ├── patch1 │ │ │ └── styles.d.ts │ │ ├── styles.d.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── issue71 │ │ ├── app.ts │ │ ├── b.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── node_modules │ │ │ └── a │ │ │ │ ├── a.d.ts │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── loaderOptionsCaching │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── submodule-es5 │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── submodule-es6 │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── localTsImplementationOfTypings │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── fake.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── newline.loader.js │ ├── node │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── nodeModulesMeaningfulErrorWhenImportingTs │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── node_modules │ │ │ └── a │ │ │ │ ├── index.ts │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── nodeResolution │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── node_modules │ │ │ └── a │ │ │ │ ├── a.d.ts │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── nolib │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── npmLink │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── onlyCompileBundledFiles │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── errorFile.ts │ │ │ ├── externalLib.d.ts │ │ │ └── externalLib.js │ │ ├── patch0 │ │ │ └── app.ts │ │ ├── patch1 │ │ │ └── app.ts │ │ ├── submodule │ │ │ └── submodule.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── otherLoadersWatch │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── message.ts │ │ ├── patch0 │ │ │ └── app.ts │ │ ├── patch1 │ │ │ └── message.ts │ │ ├── remove-bug-loader.js │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── production │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferences │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesMultiple │ │ ├── app.ts │ │ ├── common │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── common │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── indirectWithError │ │ │ │ ├── fileWithError.d.ts │ │ │ │ ├── fileWithError.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── fileWithError.d.ts │ │ │ │ ├── fileWithError.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── fileWithError.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── indirectWithError │ │ │ │ │ ├── fileWithError.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferenced │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferencedIndirect │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferencedIndirect │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch5 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferenced │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── unreferenced │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── unreferencedIndirect │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── utils │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── common │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── indirectWithError │ │ │ │ ├── fileWithError.d.ts │ │ │ │ ├── fileWithError.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── fileWithError.d.ts │ │ │ │ ├── fileWithError.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── fileWithError.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── indirectWithError │ │ │ │ │ ├── fileWithError.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferenced │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferencedIndirect │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferencedIndirect │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch5 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferenced │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── unreferenced │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── unreferencedIndirect │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── utils │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── common │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── indirectWithError │ │ │ │ ├── fileWithError.d.ts │ │ │ │ ├── fileWithError.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── fileWithError.d.ts │ │ │ │ ├── fileWithError.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── fileWithError.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── indirectWithError │ │ │ │ │ ├── fileWithError.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferencedIndirect │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferencedIndirect │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch5 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferenced │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── unreferenced │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── unreferencedIndirect │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── utils │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── common │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── indirectWithError │ │ │ │ ├── fileWithError.d.ts │ │ │ │ ├── fileWithError.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── fileWithError.d.ts │ │ │ │ ├── fileWithError.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── fileWithError.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── indirectWithError │ │ │ │ │ ├── fileWithError.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferencedIndirect │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferencedIndirect │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch5 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── unreferenced │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── unreferenced │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── unreferencedIndirect │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── utils │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ ├── indirectWithError │ │ │ ├── fileWithError.ts │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── lib │ │ │ ├── fileWithError.ts │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── patch0 │ │ │ └── lib │ │ │ │ └── fileWithError.ts │ │ ├── patch1 │ │ │ └── indirectWithError │ │ │ │ └── fileWithError.ts │ │ ├── patch2 │ │ │ └── unreferenced │ │ │ │ └── index.ts │ │ ├── patch3 │ │ │ └── unreferencedIndirect │ │ │ │ └── index.ts │ │ ├── patch4 │ │ │ └── unreferencedIndirect │ │ │ │ └── index.ts │ │ ├── patch5 │ │ │ └── unreferenced │ │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── unreferenced │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── unreferencedIndirect │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── utils │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesMultipleDifferentInstance │ │ ├── app │ │ │ ├── app.ts │ │ │ ├── tsconfig.json │ │ │ └── webpack.config.js │ │ ├── common │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── expectedOutput-5.7 │ │ │ ├── app │ │ │ │ └── bundle.js │ │ │ ├── common │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── indirect │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch2 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch4 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch5 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch6 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── utils │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-5.9 │ │ │ ├── app │ │ │ │ └── bundle.js │ │ │ ├── common │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── indirect │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch2 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch4 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch5 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch6 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── utils │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── app │ │ │ │ └── bundle.js │ │ │ ├── common │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── indirect │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch2 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch4 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch5 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch6 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── utils │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── app │ │ │ │ └── bundle.js │ │ │ ├── common │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── indirect │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch2 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch4 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── common │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch5 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch6 │ │ │ │ ├── app │ │ │ │ │ └── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── utils │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ ├── indirect │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── lib │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── patch0 │ │ │ └── common │ │ │ │ └── index.ts │ │ ├── patch1 │ │ │ └── utils │ │ │ │ └── index.ts │ │ ├── patch2 │ │ │ └── app │ │ │ │ └── app.ts │ │ ├── patch3 │ │ │ └── common │ │ │ │ └── index.ts │ │ ├── patch4 │ │ │ └── common │ │ │ │ └── index.ts │ │ ├── patch5 │ │ │ └── utils │ │ │ │ └── index.ts │ │ ├── patch6 │ │ │ └── utils │ │ │ │ └── index.ts │ │ └── utils │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ ├── projectReferencesNoSourceMap │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── foo.d.ts │ │ │ │ ├── foo.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── foo.d.ts │ │ │ │ ├── foo.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── foo.d.ts │ │ │ │ ├── foo.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── foo.d.ts │ │ │ │ ├── foo.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── foo.d.ts │ │ │ ├── foo.js │ │ │ ├── foo.ts │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesNotBuilt │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesNotBuilt_Composite_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-5.9 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ ├── projectReferencesNotBuilt_ErrorInProject │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-5.9 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ ├── projectReferencesNotBuilt_ErrorInProject_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ ├── projectReferencesNotBuilt_SemanticErrorInReference │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-5.9 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ ├── projectReferencesNotBuilt_SemanticErrorInReference_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ ├── projectReferencesNotBuilt_SyntaxErrorInReference │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-5.9 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ ├── projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ ├── projectReferencesNotBuilt_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ ├── projectReferencesOutDir │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ └── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ └── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ └── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ └── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ ├── out │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesOutDirWithPackageJson │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ └── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ └── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ └── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ └── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── patch0 │ │ │ └── lib │ │ │ │ └── index.ts │ │ ├── patch1 │ │ │ └── app.ts │ │ ├── patch2 │ │ │ └── lib │ │ │ │ └── index.ts │ │ ├── patch3 │ │ │ └── lib │ │ │ │ └── index.ts │ │ ├── patch4 │ │ │ └── app.ts │ │ ├── patch5 │ │ │ └── app.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesOutDirWithPackageJsonAlreadyBuilt │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ └── out │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── patch0 │ │ │ └── lib │ │ │ │ └── index.ts │ │ ├── patch1 │ │ │ └── app.ts │ │ ├── patch2 │ │ │ └── lib │ │ │ │ └── index.ts │ │ ├── patch3 │ │ │ └── lib │ │ │ │ └── index.ts │ │ ├── patch4 │ │ │ └── app.ts │ │ ├── patch5 │ │ │ └── app.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesRootDir │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── out │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesRootDirInvalidConfig │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── out │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── out │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesSymLinks │ │ ├── app │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── webpack.config.js │ │ ├── common │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── expectedOutput-5.7 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ └── patch0 │ │ │ └── lib │ │ │ └── src │ │ │ └── index.ts │ ├── projectReferencesSymLinksPreserve │ │ ├── app │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── webpack.config.js │ │ ├── common │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── expectedOutput-5.7 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ └── patch0 │ │ │ └── lib │ │ │ └── src │ │ │ └── index.ts │ ├── projectReferencesSymLinksPreserve_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── app │ │ │ └── dist │ │ │ │ └── index.js │ │ │ ├── common │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ ├── app │ │ │ └── dist │ │ │ │ └── index.js │ │ │ ├── lib │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ ├── projectReferencesSymLinks_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ ├── common │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ │ ├── app │ │ │ │ └── dist │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ ├── dist │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── app │ │ │ └── dist │ │ │ │ └── index.js │ │ │ ├── common │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── lib │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ └── patch0 │ │ │ ├── app │ │ │ └── dist │ │ │ │ └── index.js │ │ │ ├── lib │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ ├── projectReferencesWatch │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── patch0 │ │ │ └── lib │ │ │ │ └── index.ts │ │ ├── patch1 │ │ │ └── app.ts │ │ ├── patch2 │ │ │ └── lib │ │ │ │ └── index.ts │ │ ├── patch3 │ │ │ └── lib │ │ │ │ └── index.ts │ │ ├── patch4 │ │ │ └── app.ts │ │ ├── patch5 │ │ │ └── app.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesWatchRefWithTwoFiles │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── helper.ts │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── patch0 │ │ │ └── lib │ │ │ │ └── helper.ts │ │ ├── patch1 │ │ │ └── app.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesWatchRefWithTwoFilesAlreadyBuilt │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch2 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch2 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch2 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch2 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── helper.ts │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── libOutput │ │ │ ├── .gitignore │ │ │ ├── helper.d.ts │ │ │ ├── helper.js │ │ │ ├── helper.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ ├── patch0 │ │ │ └── lib │ │ │ │ └── index.ts │ │ ├── patch1 │ │ │ └── lib │ │ │ │ └── helper.ts │ │ ├── patch2 │ │ │ └── app.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch1 │ │ │ │ ├── app.d.ts │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-5.9 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch1 │ │ │ │ ├── app.d.ts │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch2 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ └── patch2 │ │ │ ├── bundle.js │ │ │ └── output.txt │ ├── projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch2 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch2 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch2 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ └── patch2 │ │ │ ├── bundle.js │ │ │ └── output.txt │ ├── projectReferencesWatchRefWithTwoFiles_Composite_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── app.d.ts │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-5.9 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── app.d.ts │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── helper.d.ts │ │ │ ├── helper.js │ │ │ ├── helper.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ ├── bundle.js │ │ │ └── output.txt │ ├── projectReferencesWatchRefWithTwoFiles_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── helper.d.ts │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── helper.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── helper.d.ts │ │ │ ├── helper.js │ │ │ ├── helper.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── helper.d.ts │ │ │ │ ├── helper.js │ │ │ │ ├── helper.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ ├── bundle.js │ │ │ └── output.txt │ ├── projectReferencesWatch_Composite_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch2 │ │ │ │ ├── app.d.ts │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch5 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-5.9 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch2 │ │ │ │ ├── app.d.ts │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── patch5 │ │ │ │ ├── bundle.js │ │ │ │ ├── output.txt │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── tsconfig.tsbuildinfo │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ ├── bundle.js │ │ │ └── output.txt │ ├── projectReferencesWatch_WatchApi │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ │ ├── bundle.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ └── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── tsconfig.tsbuildinfo │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ ├── patch1 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ │ ├── patch2 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ ├── patch3 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ │ ├── patch4 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ │ └── patch5 │ │ │ ├── bundle.js │ │ │ └── output.txt │ ├── projectReferencesWithCustomTransformer │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── tsconfig.tsbuildinfo │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ ├── wasHereTransformer.js │ │ └── webpack.config.js │ ├── replacement │ │ ├── a.ts │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── sub │ │ │ ├── a.ts │ │ │ └── dep.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── reportFiles │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── skip.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── resolveJsonModule │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── app.d.ts │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── file.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── run-tests.js │ ├── simpleDependency │ │ ├── app.ts │ │ ├── deeperDep.ts │ │ ├── dep.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── patch0 │ │ │ └── deeperDep.ts │ │ ├── patch1 │ │ │ └── deeperDep.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── sourceMaps │ │ ├── a.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── sourceMapsShouldConsiderInputSourceMap │ │ ├── App.vue │ │ ├── README.md │ │ ├── bootloader.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── bundle.js.map │ │ │ └── output.txt │ │ ├── index.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── shims-vue.d.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── stub-new-version.js │ ├── testLib │ │ ├── foo.ts │ │ ├── package-lock.json │ │ └── package.json │ ├── tsconfig.json │ ├── tsconfigInvalid │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── tsconfigInvalidFile │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── tsconfigSearch │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ └── output.txt │ │ ├── lib │ │ │ ├── externalLib.d.ts │ │ │ └── externalLib.js │ │ ├── src │ │ │ └── app.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── typeSystemWatch │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ │ ├── bundle.js │ │ │ ├── output.txt │ │ │ ├── patch0 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ │ └── patch1 │ │ │ │ ├── bundle.js │ │ │ │ └── output.txt │ │ ├── patch0 │ │ │ └── app.ts │ │ ├── patch1 │ │ │ └── app.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ └── validateLoaderOptionNames │ │ ├── app.ts │ │ ├── expectedOutput-5.7 │ │ ├── bundle.js │ │ └── output.txt │ │ ├── expectedOutput-5.9 │ │ ├── bundle.js │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.7 │ │ ├── bundle.js │ │ └── output.txt │ │ ├── expectedOutput-transpile-5.9 │ │ ├── bundle.js │ │ └── output.txt │ │ ├── tsconfig.json │ │ └── webpack.config.js ├── execution-tests │ ├── 1.8.2_allowJs-entryFileIsJs │ │ ├── karma.conf.js │ │ ├── src │ │ │ ├── app.js │ │ │ ├── deeperDep.js │ │ │ └── dep.js │ │ ├── test │ │ │ └── app.tests.js │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── 1.8.2_babel-allowSyntheticDefaultImports │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── node_modules │ │ │ └── mathutils │ │ │ │ ├── index.js │ │ │ │ ├── mathutils.d.ts │ │ │ │ └── package.json │ │ ├── package.json │ │ ├── src │ │ │ └── simple.ts │ │ ├── test │ │ │ └── simple.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 2.0.3_typesResolution │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── node_modules │ │ │ ├── @types │ │ │ │ └── jasmine │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── package.json │ │ │ │ │ └── types-metadata.json │ │ │ └── a │ │ │ │ ├── a.d.ts │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── src │ │ │ └── app.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── 2.1.4_babel-allowJsImportTypes │ │ ├── README.md │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── entry.js │ │ │ └── imported.ts │ │ ├── test │ │ │ └── entry.tests.js │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 2.1.4_babel-es2016 │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ └── simple.ts │ │ ├── test │ │ │ └── simple.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 2.1.4_babel-react │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── components │ │ │ │ └── App.tsx │ │ │ └── main.tsx │ │ ├── test │ │ │ └── components │ │ │ │ └── App.tests.tsx │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 2.1.4_react │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── components │ │ │ │ └── App.tsx │ │ │ └── main.tsx │ │ ├── test │ │ │ └── components │ │ │ │ └── App.tests.tsx │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 2.4.1_babel-importCodeSplitting │ │ ├── README.md │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── a.ts │ │ │ ├── app.ts │ │ │ ├── b.ts │ │ │ ├── c.ts │ │ │ └── d.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 2.4.1_importCodeSplitting │ │ ├── README.md │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── a.ts │ │ │ ├── app.ts │ │ │ ├── b.ts │ │ │ ├── c.ts │ │ │ └── d.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 2.4.1_nodeResolutionAllowJs │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ └── app.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 2.8.1_option-context │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── app-shim.d.ts │ │ │ ├── components │ │ │ │ ├── App.tsx │ │ │ │ └── deep │ │ │ │ │ ├── DeepApp.tsx │ │ │ │ │ └── deeper │ │ │ │ │ └── DeeperApp.tsx │ │ │ └── main.tsx │ │ ├── test │ │ │ └── components │ │ │ │ └── App.tests.tsx │ │ ├── tsconfig-container │ │ │ └── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 3.0.1_projectReferences │ │ ├── karma.conf.js │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.tsbuildinfo │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ └── app.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 3.0.1_projectReferencesDisabled │ │ ├── karma.conf.js │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ └── app.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 3.0.1_resolveJsonModule │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── app.ts │ │ │ └── some.json │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 3.0.1_resolveModuleName │ │ ├── bar-pkg │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── baz-pkg │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── foo-pkg │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ └── app.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 3.5.1_incremental │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ └── main.ts │ │ ├── test │ │ │ └── main.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 3.6.0_projectReferencesToBeBuilt │ │ ├── karma.conf.js │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ └── app.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── 4.7.0_node16-file-suffix │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── Exception.cts │ │ │ ├── Logger.mts │ │ │ ├── Messages.ts │ │ │ ├── ProjectName.mts │ │ │ └── app.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── README.md │ ├── allowTsInNodeModules │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── whitelisted.ts │ │ │ └── whitelisted_file.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── babel-codeSplitting │ │ ├── README.md │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── require.d.ts │ │ ├── src │ │ │ ├── a.ts │ │ │ ├── app.ts │ │ │ ├── b.ts │ │ │ ├── c.ts │ │ │ └── d.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── babel-es2015 │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ └── simple.ts │ │ ├── test │ │ │ └── simple.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── babel-es6resolveParent │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ └── submodule │ │ │ │ └── index.tsx │ │ ├── test │ │ │ └── index.tests.tsx │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── basic-happypack │ │ ├── karma.conf.js │ │ ├── lib │ │ │ ├── externalLib.d.ts │ │ │ └── externalLib.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── app.ts │ │ │ └── submodule │ │ │ │ └── submodule.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── basic │ │ ├── karma.conf.js │ │ ├── lib │ │ │ ├── externalLib.d.ts │ │ │ └── externalLib.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── app.ts │ │ │ └── submodule │ │ │ │ └── submodule.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── large │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── a.ts │ │ │ ├── b.ts │ │ │ ├── ba.ts │ │ │ ├── bb.ts │ │ │ ├── bc.ts │ │ │ ├── bd.ts │ │ │ ├── be.ts │ │ │ ├── bf.ts │ │ │ ├── bg.ts │ │ │ ├── bh.ts │ │ │ ├── bi.ts │ │ │ ├── bj.ts │ │ │ ├── bk.ts │ │ │ ├── bl.ts │ │ │ ├── bm.ts │ │ │ ├── bn.ts │ │ │ ├── bo.ts │ │ │ ├── bp.ts │ │ │ ├── bq.ts │ │ │ ├── br.ts │ │ │ ├── bs.ts │ │ │ ├── bt.ts │ │ │ ├── bu.ts │ │ │ ├── bv.ts │ │ │ ├── bw.ts │ │ │ ├── bx.ts │ │ │ ├── by.ts │ │ │ ├── bz.ts │ │ │ ├── c.ts │ │ │ ├── ca.ts │ │ │ ├── cb.ts │ │ │ ├── cc.ts │ │ │ ├── cd.ts │ │ │ ├── ce.ts │ │ │ ├── cf.ts │ │ │ ├── cg.ts │ │ │ ├── ch.ts │ │ │ ├── ci.ts │ │ │ ├── cj.ts │ │ │ ├── ck.ts │ │ │ ├── cl.ts │ │ │ ├── cm.ts │ │ │ ├── cn.ts │ │ │ ├── co.ts │ │ │ ├── cp.ts │ │ │ ├── cq.ts │ │ │ ├── cr.ts │ │ │ ├── cs.ts │ │ │ ├── ct.ts │ │ │ ├── cu.ts │ │ │ ├── cv.ts │ │ │ ├── cw.ts │ │ │ ├── cx.ts │ │ │ ├── cy.ts │ │ │ ├── cz.ts │ │ │ ├── d.ts │ │ │ ├── da.ts │ │ │ ├── db.ts │ │ │ ├── dc.ts │ │ │ ├── dd.ts │ │ │ ├── de.ts │ │ │ ├── df.ts │ │ │ ├── dg.ts │ │ │ ├── dh.ts │ │ │ ├── di.ts │ │ │ ├── dj.ts │ │ │ ├── dk.ts │ │ │ ├── dl.ts │ │ │ ├── dm.ts │ │ │ ├── dn.ts │ │ │ ├── do.ts │ │ │ ├── dp.ts │ │ │ ├── dq.ts │ │ │ ├── dr.ts │ │ │ ├── ds.ts │ │ │ ├── dt.ts │ │ │ ├── du.ts │ │ │ ├── dv.ts │ │ │ ├── e.ts │ │ │ ├── f.ts │ │ │ ├── g.ts │ │ │ ├── generate.js │ │ │ ├── h.ts │ │ │ ├── i.ts │ │ │ ├── j.ts │ │ │ ├── k.ts │ │ │ ├── l.ts │ │ │ ├── m.ts │ │ │ ├── n.ts │ │ │ ├── o.ts │ │ │ ├── p.ts │ │ │ ├── q.ts │ │ │ ├── r.ts │ │ │ ├── s.ts │ │ │ ├── t.ts │ │ │ ├── tsconfig.json │ │ │ ├── u.ts │ │ │ ├── v.ts │ │ │ ├── w.ts │ │ │ ├── x.ts │ │ │ ├── y.ts │ │ │ └── z.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── loaderOptions │ │ ├── Readme.md │ │ ├── karma.conf.js │ │ ├── lib │ │ │ ├── externalLib.d.ts │ │ │ └── externalLib.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ │ ├── app.ts │ │ │ └── submodule │ │ │ │ ├── submodule.ts │ │ │ │ ├── submodule2.ts │ │ │ │ └── submodule3.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── uppercaseStringLiteralTransformer.js │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── nodeResolution │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── node_modules │ │ │ └── a │ │ │ │ ├── a.d.ts │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── package.json │ │ ├── src │ │ │ └── app.ts │ │ ├── test │ │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock │ ├── optionsCaching │ │ ├── foo.ts │ │ ├── foo.vue │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── pnpm │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── src │ │ │ └── index.ts │ │ ├── test │ │ │ └── index.tests.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── run-tests.js │ └── simpleDependency │ │ ├── karma.conf.js │ │ ├── main.js │ │ ├── package.json │ │ ├── src │ │ ├── app.ts │ │ ├── deeperDep.ts │ │ └── dep.ts │ │ ├── test │ │ └── app.tests.ts │ │ ├── tsconfig.json │ │ ├── webpack.config.js │ │ └── yarn.lock ├── karmaConfig.js ├── pathExists.js ├── run-tests.js └── testPackages │ ├── a │ ├── a.d.ts │ ├── index.js │ └── package.json │ ├── mathutils │ ├── index.js │ ├── mathutils.d.ts │ └── package.json │ ├── whitelistedFiles │ ├── file.ts │ └── package.json │ └── whitelistedModule │ ├── index.ts │ └── package.json └── yarn.lock /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [johnnyreilly] 4 | -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /test/** -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/Dockerfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/README.md -------------------------------------------------------------------------------- /REFERENCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/REFERENCES.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/SECURITY.md -------------------------------------------------------------------------------- /examples/fork-ts-checker-webpack-plugin/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/fork-ts-checker-webpack-plugin/.eslintrc.js -------------------------------------------------------------------------------- /examples/fork-ts-checker-webpack-plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | -------------------------------------------------------------------------------- /examples/fork-ts-checker-webpack-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/fork-ts-checker-webpack-plugin/README.md -------------------------------------------------------------------------------- /examples/fork-ts-checker-webpack-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/fork-ts-checker-webpack-plugin/package.json -------------------------------------------------------------------------------- /examples/fork-ts-checker-webpack-plugin/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/fork-ts-checker-webpack-plugin/src/app.tsx -------------------------------------------------------------------------------- /examples/fork-ts-checker-webpack-plugin/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/fork-ts-checker-webpack-plugin/src/index.html -------------------------------------------------------------------------------- /examples/fork-ts-checker-webpack-plugin/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/fork-ts-checker-webpack-plugin/src/index.tsx -------------------------------------------------------------------------------- /examples/fork-ts-checker-webpack-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/fork-ts-checker-webpack-plugin/tsconfig.json -------------------------------------------------------------------------------- /examples/fork-ts-checker-webpack-plugin/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/fork-ts-checker-webpack-plugin/webpack.config.js -------------------------------------------------------------------------------- /examples/fork-ts-checker-webpack-plugin/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/fork-ts-checker-webpack-plugin/yarn.lock -------------------------------------------------------------------------------- /examples/project-references-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/project-references-example/.gitignore -------------------------------------------------------------------------------- /examples/project-references-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/project-references-example/README.md -------------------------------------------------------------------------------- /examples/project-references-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/project-references-example/package.json -------------------------------------------------------------------------------- /examples/project-references-example/packages/zoo/zoo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/project-references-example/packages/zoo/zoo.tsx -------------------------------------------------------------------------------- /examples/project-references-example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/project-references-example/src/index.tsx -------------------------------------------------------------------------------- /examples/project-references-example/tsconfig-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/project-references-example/tsconfig-base.json -------------------------------------------------------------------------------- /examples/project-references-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/project-references-example/tsconfig.json -------------------------------------------------------------------------------- /examples/project-references-example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/project-references-example/webpack.config.js -------------------------------------------------------------------------------- /examples/project-references-example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/project-references-example/yarn.lock -------------------------------------------------------------------------------- /examples/vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/vanilla/README.md -------------------------------------------------------------------------------- /examples/vanilla/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/vanilla/index.html -------------------------------------------------------------------------------- /examples/vanilla/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/vanilla/package.json -------------------------------------------------------------------------------- /examples/vanilla/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/vanilla/src/index.ts -------------------------------------------------------------------------------- /examples/vanilla/src/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/vanilla/src/render.ts -------------------------------------------------------------------------------- /examples/vanilla/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/vanilla/tsconfig.json -------------------------------------------------------------------------------- /examples/vanilla/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/vanilla/webpack.config.js -------------------------------------------------------------------------------- /examples/vanilla/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/examples/vanilla/yarn.lock -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/renovate.json -------------------------------------------------------------------------------- /src/after-compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/after-compile.ts -------------------------------------------------------------------------------- /src/compilerSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/compilerSetup.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/instance-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/instance-cache.ts -------------------------------------------------------------------------------- /src/instances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/instances.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/resolver.ts -------------------------------------------------------------------------------- /src/servicesHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/servicesHost.ts -------------------------------------------------------------------------------- /src/stringify-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/stringify-loader.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/watch-run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/src/watch-run.ts -------------------------------------------------------------------------------- /test/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/.prettierrc -------------------------------------------------------------------------------- /test/aliasLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/aliasLoader.js -------------------------------------------------------------------------------- /test/comparison-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/README.md -------------------------------------------------------------------------------- /test/comparison-tests/aliasResolution/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/aliasResolution/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/aliasResolution/common/components/myComponent.ts: -------------------------------------------------------------------------------- 1 | export = 'myComponent'; -------------------------------------------------------------------------------- /test/comparison-tests/aliasResolution/patch0/common/components/myComponent.ts: -------------------------------------------------------------------------------- 1 | export = 'changed it'; -------------------------------------------------------------------------------- /test/comparison-tests/aliasResolution/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/aliasResolution/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/aliasResolution/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/allowJs-entryFileIsJs/src/index.js: -------------------------------------------------------------------------------- 1 | console.log('working') -------------------------------------------------------------------------------- /test/comparison-tests/allowJs-entryFileIsJs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/allowJs-entryFileIsJs/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/allowJs-ts-check/src/error1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/allowJs-ts-check/src/error1.js -------------------------------------------------------------------------------- /test/comparison-tests/allowJs-ts-check/src/error2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/allowJs-ts-check/src/error2.js -------------------------------------------------------------------------------- /test/comparison-tests/allowJs-ts-check/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/allowJs-ts-check/src/index.js -------------------------------------------------------------------------------- /test/comparison-tests/allowJs-ts-check/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/allowJs-ts-check/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/allowJs-ts-check/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/allowJs-ts-check/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixTo/component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/appendSuffixTo/component.vue -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixTo/helper.ts: -------------------------------------------------------------------------------- 1 | export function myMethod() { 2 | console.log('from helper!') 3 | } 4 | -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixTo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/appendSuffixTo/index.vue -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixTo/module.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.vue" 2 | -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixTo/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixTo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/appendSuffixTo/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixToWatch/component.vue: -------------------------------------------------------------------------------- 1 | export default "some value"; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixToWatch/entry1.ts: -------------------------------------------------------------------------------- 1 | console.log('banana') 2 | -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixToWatch/entry2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/appendSuffixToWatch/entry2.ts -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixToWatch/module.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.vue" 2 | -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixToWatch/patch0/entry1.ts: -------------------------------------------------------------------------------- 1 | console.log('something!'); -------------------------------------------------------------------------------- /test/comparison-tests/appendSuffixToWatch/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /test/comparison-tests/babel-es6resolveParent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/babel-es6resolveParent/index.tsx -------------------------------------------------------------------------------- /test/comparison-tests/babel-es6resolveParent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/babel-es6resolveParent/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/babel-issue81/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/babel-issue81/a.ts -------------------------------------------------------------------------------- /test/comparison-tests/babel-issue81/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/babel-issue81/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/babel-issue81/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/babel-issue81/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/babel-issue92/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/babel-issue92/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/babel-issue92/submodule/submodule.tsx: -------------------------------------------------------------------------------- 1 | export default "Hello from submodule" -------------------------------------------------------------------------------- /test/comparison-tests/babel-issue92/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/babel-issue92/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/babel-issue92/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/babel-issue92/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/basic/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/basic/expectedOutput-5.7/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/expectedOutput-5.7/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/basic/expectedOutput-5.7/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/expectedOutput-5.7/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/basic/expectedOutput-5.9/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/expectedOutput-5.9/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/basic/expectedOutput-5.9/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/expectedOutput-5.9/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/basic/lib/externalLib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/lib/externalLib.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/basic/lib/externalLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/lib/externalLib.js -------------------------------------------------------------------------------- /test/comparison-tests/basic/patch0/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/patch0/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/basic/patch1/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/patch1/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/basic/submodule/submodule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/submodule/submodule.ts -------------------------------------------------------------------------------- /test/comparison-tests/basic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/basic/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/basic/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/codeSplitting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/codeSplitting/README.md -------------------------------------------------------------------------------- /test/comparison-tests/codeSplitting/a.ts: -------------------------------------------------------------------------------- 1 | export = 'a'; -------------------------------------------------------------------------------- /test/comparison-tests/codeSplitting/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/codeSplitting/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/codeSplitting/b.ts: -------------------------------------------------------------------------------- 1 | export = 'b'; -------------------------------------------------------------------------------- /test/comparison-tests/codeSplitting/c.ts: -------------------------------------------------------------------------------- 1 | export = 'c'; -------------------------------------------------------------------------------- /test/comparison-tests/codeSplitting/d.ts: -------------------------------------------------------------------------------- 1 | export = 'd'; -------------------------------------------------------------------------------- /test/comparison-tests/codeSplitting/require.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/codeSplitting/require.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/codeSplitting/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/codeSplitting/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/codeSplitting/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/codeSplitting/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/colors/app.ts: -------------------------------------------------------------------------------- 1 | var a == 0; -------------------------------------------------------------------------------- /test/comparison-tests/colors/expectedOutput-5.7/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/colors/expectedOutput-5.7/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/colors/expectedOutput-5.7/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/colors/expectedOutput-5.7/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/colors/expectedOutput-5.9/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/colors/expectedOutput-5.9/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/colors/expectedOutput-5.9/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/colors/expectedOutput-5.9/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/colors/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/comparison-tests/colors/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/colors/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/conditionalRequire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/conditionalRequire/README.md -------------------------------------------------------------------------------- /test/comparison-tests/conditionalRequire/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/conditionalRequire/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/conditionalRequire/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/conditionalRequire/debug.ts -------------------------------------------------------------------------------- /test/comparison-tests/conditionalRequire/globals.d.ts: -------------------------------------------------------------------------------- 1 | declare var DEBUG: boolean; -------------------------------------------------------------------------------- /test/comparison-tests/conditionalRequire/require.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/conditionalRequire/require.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/conditionalRequire/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/conditionalRequire/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/conditionalRequire/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/conditionalRequire/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/copySync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/copySync.js -------------------------------------------------------------------------------- /test/comparison-tests/create-and-execute-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/create-and-execute-test.js -------------------------------------------------------------------------------- /test/comparison-tests/customTransformer/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/customTransformer/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/customTransformer/patch0/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/customTransformer/patch0/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/customTransformer/patch1/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/customTransformer/patch1/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/customTransformer/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/customTransformer/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/customTransformer/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/customTransformerUsingPathString/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/declarationDeps/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationDeps/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/declarationDeps/hello.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationDeps/hello.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/declarationDeps/references.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /test/comparison-tests/declarationDeps/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationDeps/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/declarationDeps/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationDeps/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/declarationOutput/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationOutput/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/declarationOutput/sub/dep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationOutput/sub/dep.ts -------------------------------------------------------------------------------- /test/comparison-tests/declarationOutput/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationOutput/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/declarationOutput/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationOutput/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/declarationOutputAllowJs/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationOutputAllowJs/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/declarationOutputAllowJs/sub/dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationOutputAllowJs/sub/dep.js -------------------------------------------------------------------------------- /test/comparison-tests/declarationOutputWithMaps/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationOutputWithMaps/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/declarationOutputWithMaps/sub/dep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationOutputWithMaps/sub/dep.ts -------------------------------------------------------------------------------- /test/comparison-tests/declarationWatch/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationWatch/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/declarationWatch/dep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationWatch/dep.ts -------------------------------------------------------------------------------- /test/comparison-tests/declarationWatch/patch0/thing.d.ts: -------------------------------------------------------------------------------- 1 | declare module Thing { 2 | function doSomethingElse(); 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/declarationWatch/patch1/thing.d.ts: -------------------------------------------------------------------------------- 1 | declare module Thing { 2 | function doSomething(); 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/declarationWatch/thing.d.ts: -------------------------------------------------------------------------------- 1 | declare module Thing { 2 | function doSomething(); 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/declarationWatch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationWatch/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/declarationWatch/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/declarationWatch/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/dependencyErrors/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/dependencyErrors/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/dependencyErrors/dep1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/dependencyErrors/dep1.ts -------------------------------------------------------------------------------- /test/comparison-tests/dependencyErrors/dep2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/dependencyErrors/dep2.ts -------------------------------------------------------------------------------- /test/comparison-tests/dependencyErrors/patch0/dep1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/dependencyErrors/patch0/dep1.ts -------------------------------------------------------------------------------- /test/comparison-tests/dependencyErrors/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/comparison-tests/dependencyErrors/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/dependencyErrors/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/errorFormatter/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/errorFormatter/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/errorFormatter/common/components/myComponent.ts: -------------------------------------------------------------------------------- 1 | export = 'myComponent'; -------------------------------------------------------------------------------- /test/comparison-tests/errorFormatter/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/errorFormatter/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/errorFormatter/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/errors/app.ts: -------------------------------------------------------------------------------- 1 | var a == 0; -------------------------------------------------------------------------------- /test/comparison-tests/errors/expectedOutput-5.7/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/errors/expectedOutput-5.7/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/errors/expectedOutput-5.7/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/errors/expectedOutput-5.7/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/errors/expectedOutput-5.9/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/errors/expectedOutput-5.9/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/errors/expectedOutput-5.9/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/errors/expectedOutput-5.9/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/errors/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/comparison-tests/errors/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/errors/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/es5/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es5/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/es5/expectedOutput-5.7/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es5/expectedOutput-5.7/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/es5/expectedOutput-5.7/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es5/expectedOutput-5.7/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/es5/expectedOutput-5.9/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es5/expectedOutput-5.9/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/es5/expectedOutput-5.9/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es5/expectedOutput-5.9/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/es5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es5/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/es5/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es5/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/es6/app.ts: -------------------------------------------------------------------------------- 1 | ({get x(){ return 1 }}) 2 | Symbol -------------------------------------------------------------------------------- /test/comparison-tests/es6/expectedOutput-5.7/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6/expectedOutput-5.7/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/es6/expectedOutput-5.7/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6/expectedOutput-5.7/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/es6/expectedOutput-5.9/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6/expectedOutput-5.9/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/es6/expectedOutput-5.9/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6/expectedOutput-5.9/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/es6/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/es6/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/es6codeSplitting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6codeSplitting/README.md -------------------------------------------------------------------------------- /test/comparison-tests/es6codeSplitting/a.ts: -------------------------------------------------------------------------------- 1 | export default 'a'; -------------------------------------------------------------------------------- /test/comparison-tests/es6codeSplitting/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6codeSplitting/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/es6codeSplitting/b.ts: -------------------------------------------------------------------------------- 1 | export default 'b'; -------------------------------------------------------------------------------- /test/comparison-tests/es6codeSplitting/c.ts: -------------------------------------------------------------------------------- 1 | export default 'c'; -------------------------------------------------------------------------------- /test/comparison-tests/es6codeSplitting/d.ts: -------------------------------------------------------------------------------- 1 | export default 'd'; -------------------------------------------------------------------------------- /test/comparison-tests/es6codeSplitting/require.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6codeSplitting/require.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/es6codeSplitting/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6codeSplitting/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/es6codeSplitting/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6codeSplitting/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/es6withCJS/app.ts: -------------------------------------------------------------------------------- 1 | export default 'a'; -------------------------------------------------------------------------------- /test/comparison-tests/es6withCJS/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6withCJS/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/es6withCJS/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/es6withCJS/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/externals/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/externals/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/externals/hello.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/externals/hello.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/externals/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "hello.d.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/externals/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/externals/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/getProgram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/getProgram.js -------------------------------------------------------------------------------- /test/comparison-tests/ignoreDiagnostics/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/ignoreDiagnostics/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/ignoreDiagnostics/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/comparison-tests/ignoreDiagnostics/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/ignoreDiagnostics/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/importsWatch/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/importsWatch/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/importsWatch/foo.ts: -------------------------------------------------------------------------------- 1 | export interface IFoo { 2 | bar: string; 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/importsWatch/patch0/foo.ts: -------------------------------------------------------------------------------- 1 | export interface IFoo { 2 | bar: string; 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/importsWatch/patch1/foo.ts: -------------------------------------------------------------------------------- 1 | export interface IFoo { 2 | bar: boolean; 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/importsWatch/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/comparison-tests/importsWatch/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/importsWatch/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/instance/a.ts: -------------------------------------------------------------------------------- 1 | declare var someGlobal: number; -------------------------------------------------------------------------------- /test/comparison-tests/instance/b.ts: -------------------------------------------------------------------------------- 1 | declare var someGlobal: string; -------------------------------------------------------------------------------- /test/comparison-tests/instance/expectedOutput-5.7/err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/instance/expectedOutput-5.7/err.txt -------------------------------------------------------------------------------- /test/comparison-tests/instance/expectedOutput-5.9/err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/instance/expectedOutput-5.9/err.txt -------------------------------------------------------------------------------- /test/comparison-tests/instance/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/instance/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/instance/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/instance/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/issue372/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue372/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/issue372/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue372/foo.ts -------------------------------------------------------------------------------- /test/comparison-tests/issue372/node_modules/@types/a/index.d.ts: -------------------------------------------------------------------------------- 1 | declare var a: string; 2 | export = a; 3 | -------------------------------------------------------------------------------- /test/comparison-tests/issue372/node_modules/a/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'a'; -------------------------------------------------------------------------------- /test/comparison-tests/issue372/node_modules/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue372/node_modules/a/package.json -------------------------------------------------------------------------------- /test/comparison-tests/issue372/patch0/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue372/patch0/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/issue372/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue372/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/issue372/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue372/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/issue441/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue441/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/issue441/foo.ts: -------------------------------------------------------------------------------- 1 | export interface IFoo { 2 | bar: string; 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/issue441/patch0/styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue441/patch0/styles.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/issue441/patch1/styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue441/patch1/styles.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/issue441/styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue441/styles.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/issue441/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/comparison-tests/issue441/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue441/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/issue71/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue71/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/issue71/b.ts: -------------------------------------------------------------------------------- 1 | export = 'b'; -------------------------------------------------------------------------------- /test/comparison-tests/issue71/expectedOutput-5.7/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue71/expectedOutput-5.7/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/issue71/expectedOutput-5.9/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue71/expectedOutput-5.9/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/issue71/node_modules/a/a.d.ts: -------------------------------------------------------------------------------- 1 | export = 'a'; -------------------------------------------------------------------------------- /test/comparison-tests/issue71/node_modules/a/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'a'; -------------------------------------------------------------------------------- /test/comparison-tests/issue71/node_modules/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue71/node_modules/a/package.json -------------------------------------------------------------------------------- /test/comparison-tests/issue71/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmitOnError": true 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/issue71/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/issue71/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/loaderOptionsCaching/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/loaderOptionsCaching/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/loaderOptionsCaching/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/loaderOptionsCaching/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/newline.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/newline.loader.js -------------------------------------------------------------------------------- /test/comparison-tests/node/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/node/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/node/expectedOutput-5.7/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/node/expectedOutput-5.7/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/node/expectedOutput-5.7/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/node/expectedOutput-5.7/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/node/expectedOutput-5.9/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/node/expectedOutput-5.9/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/node/expectedOutput-5.9/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/node/expectedOutput-5.9/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/node/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/comparison-tests/node/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/node/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/app.ts: -------------------------------------------------------------------------------- 1 | import a = require('a'); 2 | 3 | console.log(a); -------------------------------------------------------------------------------- /test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/node_modules/a/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/nodeResolution/app.ts: -------------------------------------------------------------------------------- 1 | import a = require('a'); 2 | 3 | console.log(a); -------------------------------------------------------------------------------- /test/comparison-tests/nodeResolution/node_modules/a/a.d.ts: -------------------------------------------------------------------------------- 1 | export = 'a'; -------------------------------------------------------------------------------- /test/comparison-tests/nodeResolution/node_modules/a/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'a'; -------------------------------------------------------------------------------- /test/comparison-tests/nodeResolution/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/nodeResolution/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/nodeResolution/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/nolib/app.ts: -------------------------------------------------------------------------------- 1 | parseInt('10'); -------------------------------------------------------------------------------- /test/comparison-tests/nolib/expectedOutput-5.7/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/nolib/expectedOutput-5.7/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/nolib/expectedOutput-5.7/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/nolib/expectedOutput-5.7/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/nolib/expectedOutput-5.9/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/nolib/expectedOutput-5.9/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/nolib/expectedOutput-5.9/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/nolib/expectedOutput-5.9/output.txt -------------------------------------------------------------------------------- /test/comparison-tests/nolib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/nolib/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/nolib/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/nolib/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/npmLink/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/npmLink/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/npmLink/expectedOutput-5.7/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/npmLink/expectedOutput-5.7/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/npmLink/expectedOutput-5.9/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/npmLink/expectedOutput-5.9/bundle.js -------------------------------------------------------------------------------- /test/comparison-tests/npmLink/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/npmLink/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/npmLink/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/npmLink/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/onlyCompileBundledFiles/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/onlyCompileBundledFiles/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/onlyCompileBundledFiles/lib/errorFile.ts: -------------------------------------------------------------------------------- 1 | var a == 0; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/otherLoadersWatch/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/otherLoadersWatch/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/otherLoadersWatch/message.ts: -------------------------------------------------------------------------------- 1 | BUG 2 | export const message = 'Hello, world!'; 3 | -------------------------------------------------------------------------------- /test/comparison-tests/otherLoadersWatch/patch0/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/otherLoadersWatch/patch0/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/otherLoadersWatch/patch1/message.ts: -------------------------------------------------------------------------------- 1 | BUG 2 | export const message = 'Hello, world!'; 3 | BUG 4 | -------------------------------------------------------------------------------- /test/comparison-tests/otherLoadersWatch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/otherLoadersWatch/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/otherLoadersWatch/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/otherLoadersWatch/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/production/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/production/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/production/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/production/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/production/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/projectReferences/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferences/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferences/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferences/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferences/lib/index.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferences/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferences/lib/index.js -------------------------------------------------------------------------------- /test/comparison-tests/projectReferences/lib/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferences/lib/index.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferences/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferences/lib/index.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferences/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferences/lib/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/projectReferences/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferences/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/projectReferences/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferences/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesMultiple/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/common/index.ts: -------------------------------------------------------------------------------- 1 | export function common() { 2 | return 30; 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.7/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.7/indirectWithError/fileWithError.d.ts: -------------------------------------------------------------------------------- 1 | export declare function foo(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.7/lib/fileWithError.d.ts: -------------------------------------------------------------------------------- 1 | export declare function foo(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.7/patch3/unreferencedIndirect/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferencedIndirect(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.7/patch4/unreferencedIndirect/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferencedIndirect(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.7/patch5/unreferenced/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferenced(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.7/unreferenced/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferenced(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.7/unreferencedIndirect/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferencedIndirect(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.7/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function utils(): void; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.9/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.9/indirectWithError/fileWithError.d.ts: -------------------------------------------------------------------------------- 1 | export declare function foo(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.9/lib/fileWithError.d.ts: -------------------------------------------------------------------------------- 1 | export declare function foo(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.9/patch3/unreferencedIndirect/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferencedIndirect(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.9/patch4/unreferencedIndirect/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferencedIndirect(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.9/patch5/unreferenced/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferenced(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.9/unreferenced/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferenced(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.9/unreferencedIndirect/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferencedIndirect(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-5.9/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function utils(): void; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.7/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.7/indirectWithError/fileWithError.d.ts: -------------------------------------------------------------------------------- 1 | export declare function foo(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.7/lib/fileWithError.d.ts: -------------------------------------------------------------------------------- 1 | export declare function foo(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.7/patch5/unreferenced/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferenced(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.7/unreferenced/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferenced(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.7/unreferencedIndirect/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferencedIndirect(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.7/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function utils(): void; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.9/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.9/indirectWithError/fileWithError.d.ts: -------------------------------------------------------------------------------- 1 | export declare function foo(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.9/lib/fileWithError.d.ts: -------------------------------------------------------------------------------- 1 | export declare function foo(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.9/patch5/unreferenced/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferenced(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.9/unreferenced/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferenced(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.9/unreferencedIndirect/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function unreferencedIndirect(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-5.9/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function utils(): void; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultiple/patch0/lib/fileWithError.ts: -------------------------------------------------------------------------------- 1 | export function foo(): string { 2 | return "hello world"; 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/common/index.ts: -------------------------------------------------------------------------------- 1 | export function common() { 2 | return 30; 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-5.7/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-5.7/patch3/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-5.7/patch4/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-5.7/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function utils(): void; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-5.9/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-5.9/patch3/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-5.9/patch4/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-5.9/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function utils(): void; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-5.7/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-5.7/patch3/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-5.7/patch4/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-5.7/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function utils(): void; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-5.9/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-5.9/patch3/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): string; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-5.9/patch4/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function common(): number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-5.9/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function utils(): void; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/patch0/common/index.ts: -------------------------------------------------------------------------------- 1 | export function common() { 2 | return 35; 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/patch3/common/index.ts: -------------------------------------------------------------------------------- 1 | export function common(): string { 2 | return 35; 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesMultipleDifferentInstance/patch4/common/index.ts: -------------------------------------------------------------------------------- 1 | export function common() { 2 | return 35; 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNoSourceMap/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesNoSourceMap/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-5.7/lib/foo.d.ts: -------------------------------------------------------------------------------- 1 | export declare const foo = "foo"; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-5.9/lib/foo.d.ts: -------------------------------------------------------------------------------- 1 | export declare const foo = "foo"; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-5.7/lib/foo.d.ts: -------------------------------------------------------------------------------- 1 | export declare const foo = "foo"; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-5.9/lib/foo.d.ts: -------------------------------------------------------------------------------- 1 | export declare const foo = "foo"; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNoSourceMap/lib/foo.d.ts: -------------------------------------------------------------------------------- 1 | export declare const foo = "foo"; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNoSourceMap/lib/foo.ts: -------------------------------------------------------------------------------- 1 | export const foo = 'foo'; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesNotBuilt/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-5.7/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-5.9/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-5.7/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-5.9/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-5.7/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-5.9/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-5.7/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-5.9/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesOutDir/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesOutDir/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesOutDir/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesOutDir/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesOutDir/lib/index.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesOutDirWithPackageJson/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesRootDir/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesRootDir/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/common/src/index.ts: -------------------------------------------------------------------------------- 1 | export const getMeaningOfLife2 = () => 45; -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-5.7/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-5.7/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-5.7/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-5.9/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-5.9/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-5.9/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-5.7/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-5.7/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-5.7/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-5.9/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-5.9/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-5.9/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/common/src/index.ts: -------------------------------------------------------------------------------- 1 | export const getMeaningOfLife2 = () => 45; -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-5.7/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-5.7/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-5.7/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-5.9/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-5.9/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-5.9/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-5.7/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-5.7/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-5.7/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-5.9/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-5.9/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-5.9/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-5.7/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-5.7/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-5.7/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-5.9/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-5.9/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-5.9/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-5.7/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-5.9/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-5.7/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-5.7/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-5.7/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-5.9/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-5.9/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-5.9/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-5.7/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-5.7/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-5.7/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-5.9/common/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife2: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-5.9/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-5.9/patch0/lib/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getMeaningOfLife3: () => number; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesWatch/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesWatch/lib/index.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch/patch1/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesWatch/patch1/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch/patch4/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesWatch/patch4/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch/patch5/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesWatch/patch5/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/projectReferencesWatch/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFiles/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/libOutput/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-5.7/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-5.7/patch1/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-5.9/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-5.9/patch1/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-5.7/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-5.7/patch0/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-5.9/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-5.9/patch0/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-5.7/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-5.7/patch2/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-5.9/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-5.9/patch2/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/projectReferencesWithCustomTransformer/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/comparison-tests/replacement/a.ts: -------------------------------------------------------------------------------- 1 | var a = 'original'; 2 | export = a; -------------------------------------------------------------------------------- /test/comparison-tests/replacement/app.ts: -------------------------------------------------------------------------------- 1 | import a = require('./a'); 2 | 3 | console.log(a) -------------------------------------------------------------------------------- /test/comparison-tests/replacement/sub/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/replacement/sub/a.ts -------------------------------------------------------------------------------- /test/comparison-tests/replacement/sub/dep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/replacement/sub/dep.ts -------------------------------------------------------------------------------- /test/comparison-tests/replacement/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/comparison-tests/replacement/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/replacement/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/reportFiles/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/reportFiles/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/reportFiles/skip.ts: -------------------------------------------------------------------------------- 1 | export let a: number 2 | a = '10' -------------------------------------------------------------------------------- /test/comparison-tests/reportFiles/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/comparison-tests/reportFiles/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/reportFiles/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/resolveJsonModule/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/resolveJsonModule/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/resolveJsonModule/expectedOutput-5.7/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/resolveJsonModule/expectedOutput-5.9/app.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /test/comparison-tests/resolveJsonModule/file.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /test/comparison-tests/resolveJsonModule/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/resolveJsonModule/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/resolveJsonModule/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/resolveJsonModule/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/run-tests.js -------------------------------------------------------------------------------- /test/comparison-tests/simpleDependency/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/simpleDependency/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/simpleDependency/deeperDep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/simpleDependency/deeperDep.ts -------------------------------------------------------------------------------- /test/comparison-tests/simpleDependency/dep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/simpleDependency/dep.ts -------------------------------------------------------------------------------- /test/comparison-tests/simpleDependency/patch0/deeperDep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/simpleDependency/patch0/deeperDep.ts -------------------------------------------------------------------------------- /test/comparison-tests/simpleDependency/patch1/deeperDep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/simpleDependency/patch1/deeperDep.ts -------------------------------------------------------------------------------- /test/comparison-tests/simpleDependency/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/comparison-tests/simpleDependency/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/simpleDependency/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/sourceMaps/a.ts: -------------------------------------------------------------------------------- 1 | console.log('Hello world') -------------------------------------------------------------------------------- /test/comparison-tests/sourceMaps/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "sourceMap": true 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/sourceMaps/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/sourceMaps/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/index.ts: -------------------------------------------------------------------------------- 1 | import("./bootloader"); 2 | -------------------------------------------------------------------------------- /test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "sourceMap": true 4 | } 5 | } -------------------------------------------------------------------------------- /test/comparison-tests/stub-new-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/stub-new-version.js -------------------------------------------------------------------------------- /test/comparison-tests/testLib/foo.ts: -------------------------------------------------------------------------------- 1 | export default 'foo'; -------------------------------------------------------------------------------- /test/comparison-tests/testLib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/testLib/package-lock.json -------------------------------------------------------------------------------- /test/comparison-tests/testLib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/testLib/package.json -------------------------------------------------------------------------------- /test/comparison-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/tsconfigInvalid/app.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/comparison-tests/tsconfigInvalid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/tsconfigInvalid/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/tsconfigInvalid/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/tsconfigInvalid/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/tsconfigInvalidFile/app.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/comparison-tests/tsconfigInvalidFile/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/tsconfigInvalidFile/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/tsconfigSearch/lib/externalLib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/tsconfigSearch/lib/externalLib.d.ts -------------------------------------------------------------------------------- /test/comparison-tests/tsconfigSearch/lib/externalLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/tsconfigSearch/lib/externalLib.js -------------------------------------------------------------------------------- /test/comparison-tests/tsconfigSearch/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/tsconfigSearch/src/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/tsconfigSearch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/tsconfigSearch/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/tsconfigSearch/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/tsconfigSearch/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/typeSystemWatch/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/typeSystemWatch/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/typeSystemWatch/patch0/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/typeSystemWatch/patch0/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/typeSystemWatch/patch1/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/typeSystemWatch/patch1/app.ts -------------------------------------------------------------------------------- /test/comparison-tests/typeSystemWatch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/typeSystemWatch/tsconfig.json -------------------------------------------------------------------------------- /test/comparison-tests/typeSystemWatch/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/comparison-tests/typeSystemWatch/webpack.config.js -------------------------------------------------------------------------------- /test/comparison-tests/validateLoaderOptionNames/app.ts: -------------------------------------------------------------------------------- 1 | var a = 0; -------------------------------------------------------------------------------- /test/comparison-tests/validateLoaderOptionNames/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | } 4 | } -------------------------------------------------------------------------------- /test/execution-tests/1.8.2_allowJs-entryFileIsJs/src/dep.js: -------------------------------------------------------------------------------- 1 | var dep = require('./deeperDep'); 2 | 3 | module.exports = dep; 4 | -------------------------------------------------------------------------------- /test/execution-tests/2.0.3_typesResolution/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.0.3_typesResolution/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/2.0.3_typesResolution/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.0.3_typesResolution/main.js -------------------------------------------------------------------------------- /test/execution-tests/2.0.3_typesResolution/node_modules/a/a.d.ts: -------------------------------------------------------------------------------- 1 | export = 'a'; -------------------------------------------------------------------------------- /test/execution-tests/2.0.3_typesResolution/node_modules/a/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'aaaa'; -------------------------------------------------------------------------------- /test/execution-tests/2.0.3_typesResolution/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.0.3_typesResolution/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/2.0.3_typesResolution/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmitOnError": true 4 | } 5 | } -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-es2016/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-es2016/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-es2016/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-es2016/main.js -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-es2016/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-es2016/package.json -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-es2016/src/simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-es2016/src/simple.ts -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-es2016/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-es2016/tsconfig.json -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-es2016/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-es2016/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-es2016/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-es2016/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-react/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-react/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-react/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-react/main.js -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-react/package.json -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-react/src/main.tsx -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-react/tsconfig.json -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-react/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-react/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_babel-react/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_babel-react/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_react/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_react/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_react/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_react/main.js -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_react/package.json -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_react/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_react/src/components/App.tsx -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_react/src/main.tsx -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_react/tsconfig.json -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_react/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_react/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/2.1.4_react/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.1.4_react/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_babel-importCodeSplitting/src/a.ts: -------------------------------------------------------------------------------- 1 | const a = 'a' 2 | export default a; -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_babel-importCodeSplitting/src/b.ts: -------------------------------------------------------------------------------- 1 | const b = 'b' 2 | export default b; -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_babel-importCodeSplitting/src/c.ts: -------------------------------------------------------------------------------- 1 | const c = 'c'; 2 | export default c; -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_babel-importCodeSplitting/src/d.ts: -------------------------------------------------------------------------------- 1 | export const d = 'd'; -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_importCodeSplitting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.4.1_importCodeSplitting/README.md -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_importCodeSplitting/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.4.1_importCodeSplitting/main.js -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_importCodeSplitting/src/a.ts: -------------------------------------------------------------------------------- 1 | const a = 'a' 2 | export default a; -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_importCodeSplitting/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.4.1_importCodeSplitting/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_importCodeSplitting/src/b.ts: -------------------------------------------------------------------------------- 1 | const b = 'b' 2 | export default b; -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_importCodeSplitting/src/c.ts: -------------------------------------------------------------------------------- 1 | const c = 'c'; 2 | export default c; -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_importCodeSplitting/src/d.ts: -------------------------------------------------------------------------------- 1 | export const d = 'd'; -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_importCodeSplitting/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.4.1_importCodeSplitting/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_nodeResolutionAllowJs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.4.1_nodeResolutionAllowJs/main.js -------------------------------------------------------------------------------- /test/execution-tests/2.4.1_nodeResolutionAllowJs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.4.1_nodeResolutionAllowJs/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/2.8.1_option-context/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.8.1_option-context/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/2.8.1_option-context/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.8.1_option-context/main.js -------------------------------------------------------------------------------- /test/execution-tests/2.8.1_option-context/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.8.1_option-context/package.json -------------------------------------------------------------------------------- /test/execution-tests/2.8.1_option-context/src/app-shim.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-click-outside'; 2 | -------------------------------------------------------------------------------- /test/execution-tests/2.8.1_option-context/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.8.1_option-context/src/main.tsx -------------------------------------------------------------------------------- /test/execution-tests/2.8.1_option-context/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/2.8.1_option-context/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferences/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_projectReferences/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferences/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferences/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_projectReferences/lib/index.js -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferences/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_projectReferences/lib/index.ts -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferences/lib/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferences/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_projectReferences/main.js -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferences/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_projectReferences/package.json -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferences/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_projectReferences/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferences/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_projectReferences/tsconfig.json -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferences/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_projectReferences/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_projectReferencesDisabled/lib/.gitignore: -------------------------------------------------------------------------------- 1 | !*.js.map -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveJsonModule/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveJsonModule/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveJsonModule/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveJsonModule/main.js -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveJsonModule/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveJsonModule/package.json -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveJsonModule/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveJsonModule/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveJsonModule/src/some.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveJsonModule/src/some.json -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveJsonModule/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveJsonModule/tsconfig.json -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveJsonModule/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveJsonModule/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveModuleName/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveModuleName/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveModuleName/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveModuleName/main.js -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveModuleName/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveModuleName/package.json -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveModuleName/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveModuleName/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveModuleName/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmitOnError": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/execution-tests/3.0.1_resolveModuleName/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.0.1_resolveModuleName/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/3.5.1_incremental/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.5.1_incremental/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/3.5.1_incremental/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.5.1_incremental/main.js -------------------------------------------------------------------------------- /test/execution-tests/3.5.1_incremental/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.5.1_incremental/package.json -------------------------------------------------------------------------------- /test/execution-tests/3.5.1_incremental/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.5.1_incremental/src/main.ts -------------------------------------------------------------------------------- /test/execution-tests/3.5.1_incremental/test/main.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.5.1_incremental/test/main.tests.ts -------------------------------------------------------------------------------- /test/execution-tests/3.5.1_incremental/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.5.1_incremental/tsconfig.json -------------------------------------------------------------------------------- /test/execution-tests/3.5.1_incremental/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.5.1_incremental/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/3.5.1_incremental/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/3.5.1_incremental/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/4.7.0_node16-file-suffix/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/4.7.0_node16-file-suffix/main.js -------------------------------------------------------------------------------- /test/execution-tests/4.7.0_node16-file-suffix/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/4.7.0_node16-file-suffix/package.json -------------------------------------------------------------------------------- /test/execution-tests/4.7.0_node16-file-suffix/src/Exception.cts: -------------------------------------------------------------------------------- 1 | export class Exception extends Error {} -------------------------------------------------------------------------------- /test/execution-tests/4.7.0_node16-file-suffix/src/ProjectName.mts: -------------------------------------------------------------------------------- 1 | export let ProjectName = "node16-file-suffix-commonjs"; 2 | -------------------------------------------------------------------------------- /test/execution-tests/4.7.0_node16-file-suffix/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/4.7.0_node16-file-suffix/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/4.7.0_node16-file-suffix/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/4.7.0_node16-file-suffix/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/README.md -------------------------------------------------------------------------------- /test/execution-tests/allowTsInNodeModules/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/allowTsInNodeModules/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/allowTsInNodeModules/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/allowTsInNodeModules/main.js -------------------------------------------------------------------------------- /test/execution-tests/allowTsInNodeModules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/allowTsInNodeModules/package.json -------------------------------------------------------------------------------- /test/execution-tests/allowTsInNodeModules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/allowTsInNodeModules/tsconfig.json -------------------------------------------------------------------------------- /test/execution-tests/allowTsInNodeModules/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/allowTsInNodeModules/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-codeSplitting/README.md -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-codeSplitting/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-codeSplitting/main.js -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-codeSplitting/package.json -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/require.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-codeSplitting/require.d.ts -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/src/a.ts: -------------------------------------------------------------------------------- 1 | export default 'a'; -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-codeSplitting/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/src/b.ts: -------------------------------------------------------------------------------- 1 | export default 'b'; -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/src/c.ts: -------------------------------------------------------------------------------- 1 | export default 'c'; -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/src/d.ts: -------------------------------------------------------------------------------- 1 | export default 'd'; -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-codeSplitting/tsconfig.json -------------------------------------------------------------------------------- /test/execution-tests/babel-codeSplitting/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-codeSplitting/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/babel-es2015/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es2015/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/babel-es2015/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es2015/main.js -------------------------------------------------------------------------------- /test/execution-tests/babel-es2015/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es2015/package.json -------------------------------------------------------------------------------- /test/execution-tests/babel-es2015/src/simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es2015/src/simple.ts -------------------------------------------------------------------------------- /test/execution-tests/babel-es2015/test/simple.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es2015/test/simple.tests.ts -------------------------------------------------------------------------------- /test/execution-tests/babel-es2015/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es2015/tsconfig.json -------------------------------------------------------------------------------- /test/execution-tests/babel-es2015/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es2015/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/babel-es2015/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es2015/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/babel-es6resolveParent/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es6resolveParent/main.js -------------------------------------------------------------------------------- /test/execution-tests/babel-es6resolveParent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es6resolveParent/package.json -------------------------------------------------------------------------------- /test/execution-tests/babel-es6resolveParent/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/babel-es6resolveParent/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/basic-happypack/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic-happypack/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/basic-happypack/lib/externalLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic-happypack/lib/externalLib.js -------------------------------------------------------------------------------- /test/execution-tests/basic-happypack/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic-happypack/main.js -------------------------------------------------------------------------------- /test/execution-tests/basic-happypack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic-happypack/package.json -------------------------------------------------------------------------------- /test/execution-tests/basic-happypack/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic-happypack/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/basic-happypack/test/app.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic-happypack/test/app.tests.ts -------------------------------------------------------------------------------- /test/execution-tests/basic-happypack/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmitOnError": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/execution-tests/basic-happypack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic-happypack/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/basic-happypack/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic-happypack/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/basic/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/basic/lib/externalLib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic/lib/externalLib.d.ts -------------------------------------------------------------------------------- /test/execution-tests/basic/lib/externalLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic/lib/externalLib.js -------------------------------------------------------------------------------- /test/execution-tests/basic/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic/main.js -------------------------------------------------------------------------------- /test/execution-tests/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic/package.json -------------------------------------------------------------------------------- /test/execution-tests/basic/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/basic/src/submodule/submodule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic/src/submodule/submodule.ts -------------------------------------------------------------------------------- /test/execution-tests/basic/test/app.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic/test/app.tests.ts -------------------------------------------------------------------------------- /test/execution-tests/basic/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmitOnError": true 4 | } 5 | } -------------------------------------------------------------------------------- /test/execution-tests/basic/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/basic/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/basic/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/large/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/large/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/main.js -------------------------------------------------------------------------------- /test/execution-tests/large/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/package.json -------------------------------------------------------------------------------- /test/execution-tests/large/src/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/a.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/b.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/ba.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/ba.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bb.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bc.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bd.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/be.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/be.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bf.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bg.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bh.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bi.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bj.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bk.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bl.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bm.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bn.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bo.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bp.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bq.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/br.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/br.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bs.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bt.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bu.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bv.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bw.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bx.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/by.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/by.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/bz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/bz.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/c.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/ca.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cb.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cc.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cd.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/ce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/ce.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cf.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cg.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/ch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/ch.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/ci.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cj.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/ck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/ck.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cl.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cm.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cn.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/co.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/co.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cp.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cq.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cr.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cs.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/ct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/ct.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cu.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cv.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cw.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cx.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cy.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/cz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/cz.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/d.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/da.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/db.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dc.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dd.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/de.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/df.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/df.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dg.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dh.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/di.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/di.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dj.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dk.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dl.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dm.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dn.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/do.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/do.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dp.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dq.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dr.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/ds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/ds.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dt.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/du.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/du.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/dv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/dv.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/e.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/f.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/f.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/g.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/g.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/generate.js -------------------------------------------------------------------------------- /test/execution-tests/large/src/h.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/h.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/i.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/i.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/j.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/j.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/k.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/k.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/l.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/l.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/m.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/m.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/n.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/o.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/o.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/p.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/p.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/q.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/q.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/r.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/r.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/s.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/s.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/t.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/t.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/execution-tests/large/src/u.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/u.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/v.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/v.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/w.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/w.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/x.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/x.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/y.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/y.ts -------------------------------------------------------------------------------- /test/execution-tests/large/src/z.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/src/z.ts -------------------------------------------------------------------------------- /test/execution-tests/large/test/app.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/test/app.tests.ts -------------------------------------------------------------------------------- /test/execution-tests/large/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmitOnError": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/execution-tests/large/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/large/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/large/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/loaderOptions/Readme.md -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/loaderOptions/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/lib/externalLib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/loaderOptions/lib/externalLib.d.ts -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/lib/externalLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/loaderOptions/lib/externalLib.js -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/loaderOptions/main.js -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/loaderOptions/package.json -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/loaderOptions/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/test/app.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/loaderOptions/test/app.tests.ts -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmitOnError": true 4 | } 5 | } -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/loaderOptions/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/loaderOptions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/loaderOptions/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/nodeResolution/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/nodeResolution/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/nodeResolution/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/nodeResolution/main.js -------------------------------------------------------------------------------- /test/execution-tests/nodeResolution/node_modules/a/a.d.ts: -------------------------------------------------------------------------------- 1 | export = 'a'; -------------------------------------------------------------------------------- /test/execution-tests/nodeResolution/node_modules/a/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'aaaa'; -------------------------------------------------------------------------------- /test/execution-tests/nodeResolution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/nodeResolution/package.json -------------------------------------------------------------------------------- /test/execution-tests/nodeResolution/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/nodeResolution/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/nodeResolution/test/app.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/nodeResolution/test/app.tests.ts -------------------------------------------------------------------------------- /test/execution-tests/nodeResolution/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmitOnError": true 4 | } 5 | } -------------------------------------------------------------------------------- /test/execution-tests/nodeResolution/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/nodeResolution/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/nodeResolution/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/nodeResolution/yarn.lock -------------------------------------------------------------------------------- /test/execution-tests/optionsCaching/foo.ts: -------------------------------------------------------------------------------- 1 | import './foo.vue' 2 | -------------------------------------------------------------------------------- /test/execution-tests/optionsCaching/foo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/optionsCaching/foo.vue -------------------------------------------------------------------------------- /test/execution-tests/optionsCaching/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/optionsCaching/tsconfig.json -------------------------------------------------------------------------------- /test/execution-tests/optionsCaching/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/optionsCaching/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/pnpm/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/pnpm/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/pnpm/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/pnpm/main.js -------------------------------------------------------------------------------- /test/execution-tests/pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/pnpm/package.json -------------------------------------------------------------------------------- /test/execution-tests/pnpm/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/pnpm/pnpm-lock.yaml -------------------------------------------------------------------------------- /test/execution-tests/pnpm/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/pnpm/src/index.ts -------------------------------------------------------------------------------- /test/execution-tests/pnpm/test/index.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/pnpm/test/index.tests.ts -------------------------------------------------------------------------------- /test/execution-tests/pnpm/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmitOnError": true 4 | } 5 | } -------------------------------------------------------------------------------- /test/execution-tests/pnpm/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/pnpm/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/run-tests.js -------------------------------------------------------------------------------- /test/execution-tests/simpleDependency/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/simpleDependency/karma.conf.js -------------------------------------------------------------------------------- /test/execution-tests/simpleDependency/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/simpleDependency/main.js -------------------------------------------------------------------------------- /test/execution-tests/simpleDependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/simpleDependency/package.json -------------------------------------------------------------------------------- /test/execution-tests/simpleDependency/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/simpleDependency/src/app.ts -------------------------------------------------------------------------------- /test/execution-tests/simpleDependency/src/deeperDep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/simpleDependency/src/deeperDep.ts -------------------------------------------------------------------------------- /test/execution-tests/simpleDependency/src/dep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/simpleDependency/src/dep.ts -------------------------------------------------------------------------------- /test/execution-tests/simpleDependency/test/app.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/simpleDependency/test/app.tests.ts -------------------------------------------------------------------------------- /test/execution-tests/simpleDependency/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmitOnError": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/execution-tests/simpleDependency/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/simpleDependency/webpack.config.js -------------------------------------------------------------------------------- /test/execution-tests/simpleDependency/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/execution-tests/simpleDependency/yarn.lock -------------------------------------------------------------------------------- /test/karmaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/karmaConfig.js -------------------------------------------------------------------------------- /test/pathExists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/pathExists.js -------------------------------------------------------------------------------- /test/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/run-tests.js -------------------------------------------------------------------------------- /test/testPackages/a/a.d.ts: -------------------------------------------------------------------------------- 1 | export = 'a'; -------------------------------------------------------------------------------- /test/testPackages/a/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'aaaa'; -------------------------------------------------------------------------------- /test/testPackages/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/testPackages/a/package.json -------------------------------------------------------------------------------- /test/testPackages/mathutils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/testPackages/mathutils/index.js -------------------------------------------------------------------------------- /test/testPackages/mathutils/mathutils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/testPackages/mathutils/mathutils.d.ts -------------------------------------------------------------------------------- /test/testPackages/mathutils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/testPackages/mathutils/package.json -------------------------------------------------------------------------------- /test/testPackages/whitelistedFiles/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/testPackages/whitelistedFiles/file.ts -------------------------------------------------------------------------------- /test/testPackages/whitelistedFiles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/testPackages/whitelistedFiles/package.json -------------------------------------------------------------------------------- /test/testPackages/whitelistedModule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/testPackages/whitelistedModule/index.ts -------------------------------------------------------------------------------- /test/testPackages/whitelistedModule/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/test/testPackages/whitelistedModule/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-loader/HEAD/yarn.lock --------------------------------------------------------------------------------