diff --git a/.gitignore b/.gitignore index 3ea06a635..56ce45ee8 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,8 @@ bundle.js npm-debug.log /.test/ /test/execution-tests/**/typings -!/test/**/expectedOutput-*/** +!/test/**/expectedOutput/** +!/test/**/expectedOutput-transpile/** /**/node_modules /dist /test/execution-tests/**/dist diff --git a/.vscode/settings.json b/.vscode/settings.json index d9368803c..39f6e7625 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,6 +5,7 @@ "github.copilot.nextEditSuggestions.enabled": true, "chat.tools.terminal.autoApprove": { "git blame": true, - "sed": true + "sed": true, + "yarn": true, } } diff --git a/AGENTS.md b/AGENTS.md index 03e7db858..4695b73cc 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -41,20 +41,6 @@ yarn comparison-tests -- --save-output --single-test # regenerate o > Note: test name casing must be exact when using `--single-test`. -### Seeding snapshots for a new TypeScript version - -When adding support for a new TypeScript version, run: - -```bash -yarn comparison-tests-generate -``` - -This does two things: -1. `git clean -xfd test/comparison-tests` — wipes all untracked/generated files in the test directory. -2. Runs `test/comparison-tests/stub-new-version.js`, which copies every `expectedOutput-{OLD}/` and `expectedOutput-transpile-{OLD}/` folder to the corresponding `expectedOutput-{NEW}/` counterpart across all test sub-directories. - -The `OLD_VERSION` and `NEW_VERSION` constants at the top of `stub-new-version.js` must be updated manually before running this script each time a new TypeScript version is introduced. After running, review and commit the seeded snapshots, then use `--save-output` to correct any that differ from the new version's actual output. - ## Execution tests (`test/execution-tests/`) Each sub-directory is a mini webpack project with a Karma/Jasmine test suite. The harness compiles the project and **runs the compiled code** — useful for asserting correct runtime behaviour. These are matrix-tested in CI across Node 20/22 and TypeScript 5.x versions. diff --git a/package.json b/package.json index 7a4080408..444c7d177 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,6 @@ "build": "tsc --version && tsc --project \"./src\"", "lint": "tsc --project \"./src\" --noEmit && eslint -c .eslintrc.js --ext .ts ./src", "comparison-tests": "git clean -xfd test/comparison-tests && npm link --legacy-peer-deps ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js", - "comparison-tests-generate": "git clean -xfd test/comparison-tests && node test/comparison-tests/stub-new-version.js", "execution-tests": "git clean -xfd test/execution-tests && node test/execution-tests/run-tests.js", "test": "git clean -xfd test/comparison-tests && git clean -xfd test/execution-tests && node test/run-tests.js", "clean": "git clean -xfd test/comparison-tests && git clean -xfd test/execution-tests", diff --git a/test/comparison-tests/aliasResolution/expectedOutput-6.0/bundle.js b/test/comparison-tests/aliasResolution/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/aliasResolution/expectedOutput-6.0/bundle.js rename to test/comparison-tests/aliasResolution/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/aliasResolution/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/aliasResolution/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/aliasResolution/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/aliasResolution/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/aliasResolution/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/aliasResolution/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/aliasResolution/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/aliasResolution/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/aliasResolution/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/aliasResolution/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/aliasResolution/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/aliasResolution/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/aliasResolution/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/aliasResolution/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/aliasResolution/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/aliasResolution/expectedOutput/bundle.js diff --git a/test/comparison-tests/aliasResolution/expectedOutput-6.0/output.txt b/test/comparison-tests/aliasResolution/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/aliasResolution/expectedOutput-6.0/output.txt rename to test/comparison-tests/aliasResolution/expectedOutput/output.txt diff --git a/test/comparison-tests/aliasResolution/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/aliasResolution/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/aliasResolution/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/aliasResolution/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/aliasResolution/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/aliasResolution/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/aliasResolution/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/aliasResolution/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-6.0/bundle.js b/test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-6.0/bundle.js rename to test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/allowJs-entryFileIsJs/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/allowJs-entryFileIsJs/expectedOutput/bundle.js diff --git a/test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-6.0/output.txt b/test/comparison-tests/allowJs-entryFileIsJs/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/allowJs-entryFileIsJs/expectedOutput-6.0/output.txt rename to test/comparison-tests/allowJs-entryFileIsJs/expectedOutput/output.txt diff --git a/test/comparison-tests/allowJs-ts-check/expectedOutput-6.0/bundle.js b/test/comparison-tests/allowJs-ts-check/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/allowJs-ts-check/expectedOutput-6.0/bundle.js rename to test/comparison-tests/allowJs-ts-check/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/allowJs-ts-check/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/allowJs-ts-check/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/allowJs-ts-check/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/allowJs-ts-check/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/allowJs-ts-check/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/allowJs-ts-check/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/allowJs-ts-check/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/allowJs-ts-check/expectedOutput/bundle.js diff --git a/test/comparison-tests/allowJs-ts-check/expectedOutput-6.0/output.txt b/test/comparison-tests/allowJs-ts-check/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/allowJs-ts-check/expectedOutput-6.0/output.txt rename to test/comparison-tests/allowJs-ts-check/expectedOutput/output.txt diff --git a/test/comparison-tests/appendSuffixTo/expectedOutput-6.0/bundle.js b/test/comparison-tests/appendSuffixTo/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/appendSuffixTo/expectedOutput-6.0/bundle.js rename to test/comparison-tests/appendSuffixTo/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/appendSuffixTo/expectedOutput-6.0/output.txt b/test/comparison-tests/appendSuffixTo/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/appendSuffixTo/expectedOutput-6.0/output.txt rename to test/comparison-tests/appendSuffixTo/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/appendSuffixTo/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/appendSuffixTo/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/appendSuffixTo/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/appendSuffixTo/expectedOutput/bundle.js diff --git a/test/comparison-tests/appendSuffixTo/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/appendSuffixTo/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/appendSuffixTo/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/appendSuffixTo/expectedOutput/output.txt diff --git a/test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/bundle.entry1.js b/test/comparison-tests/appendSuffixToWatch/expectedOutput/bundle.entry1.js similarity index 100% rename from test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/bundle.entry1.js rename to test/comparison-tests/appendSuffixToWatch/expectedOutput/bundle.entry1.js diff --git a/test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/bundle.entry2.js b/test/comparison-tests/appendSuffixToWatch/expectedOutput/bundle.entry2.js similarity index 100% rename from test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/bundle.entry2.js rename to test/comparison-tests/appendSuffixToWatch/expectedOutput/bundle.entry2.js diff --git a/test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/output.txt b/test/comparison-tests/appendSuffixToWatch/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/output.txt rename to test/comparison-tests/appendSuffixToWatch/expectedOutput/output.txt diff --git a/test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/patch0/bundle.entry1.js b/test/comparison-tests/appendSuffixToWatch/expectedOutput/patch0/bundle.entry1.js similarity index 100% rename from test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/patch0/bundle.entry1.js rename to test/comparison-tests/appendSuffixToWatch/expectedOutput/patch0/bundle.entry1.js diff --git a/test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/patch0/bundle.entry2.js b/test/comparison-tests/appendSuffixToWatch/expectedOutput/patch0/bundle.entry2.js similarity index 100% rename from test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/patch0/bundle.entry2.js rename to test/comparison-tests/appendSuffixToWatch/expectedOutput/patch0/bundle.entry2.js diff --git a/test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/appendSuffixToWatch/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/appendSuffixToWatch/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/appendSuffixToWatch/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/babel-es6resolveParent/expectedOutput-6.0/bundle.js b/test/comparison-tests/babel-es6resolveParent/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/babel-es6resolveParent/expectedOutput-6.0/bundle.js rename to test/comparison-tests/babel-es6resolveParent/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/babel-es6resolveParent/expectedOutput-6.0/output.txt b/test/comparison-tests/babel-es6resolveParent/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/babel-es6resolveParent/expectedOutput-6.0/output.txt rename to test/comparison-tests/babel-es6resolveParent/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/babel-es6resolveParent/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/babel-es6resolveParent/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/babel-es6resolveParent/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/babel-es6resolveParent/expectedOutput/bundle.js diff --git a/test/comparison-tests/babel-es6resolveParent/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/babel-es6resolveParent/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/babel-es6resolveParent/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/babel-es6resolveParent/expectedOutput/output.txt diff --git a/test/comparison-tests/babel-issue81/expectedOutput-6.0/bundle.js b/test/comparison-tests/babel-issue81/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/babel-issue81/expectedOutput-6.0/bundle.js rename to test/comparison-tests/babel-issue81/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/babel-issue81/expectedOutput-6.0/bundle.js.map b/test/comparison-tests/babel-issue81/expectedOutput-transpile/bundle.js.map similarity index 100% rename from test/comparison-tests/babel-issue81/expectedOutput-6.0/bundle.js.map rename to test/comparison-tests/babel-issue81/expectedOutput-transpile/bundle.js.map diff --git a/test/comparison-tests/babel-issue81/expectedOutput-6.0/output.txt b/test/comparison-tests/babel-issue81/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/babel-issue81/expectedOutput-6.0/output.txt rename to test/comparison-tests/babel-issue81/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/babel-issue81/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/babel-issue81/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/babel-issue81/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/babel-issue81/expectedOutput/bundle.js diff --git a/test/comparison-tests/babel-issue81/expectedOutput-transpile-6.0/bundle.js.map b/test/comparison-tests/babel-issue81/expectedOutput/bundle.js.map similarity index 100% rename from test/comparison-tests/babel-issue81/expectedOutput-transpile-6.0/bundle.js.map rename to test/comparison-tests/babel-issue81/expectedOutput/bundle.js.map diff --git a/test/comparison-tests/babel-issue81/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/babel-issue81/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/babel-issue81/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/babel-issue81/expectedOutput/output.txt diff --git a/test/comparison-tests/babel-issue92/expectedOutput-6.0/bundle.js b/test/comparison-tests/babel-issue92/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/babel-issue92/expectedOutput-6.0/bundle.js rename to test/comparison-tests/babel-issue92/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/babel-issue92/expectedOutput-6.0/output.txt b/test/comparison-tests/babel-issue92/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/babel-issue92/expectedOutput-6.0/output.txt rename to test/comparison-tests/babel-issue92/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/babel-issue92/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/babel-issue92/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/babel-issue92/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/babel-issue92/expectedOutput/bundle.js diff --git a/test/comparison-tests/babel-issue92/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/babel-issue92/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/babel-issue92/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/babel-issue92/expectedOutput/output.txt diff --git a/test/comparison-tests/basic/expectedOutput-6.0/bundle.js b/test/comparison-tests/basic/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/basic/expectedOutput-6.0/bundle.js rename to test/comparison-tests/basic/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/basic/expectedOutput-6.0/output.txt b/test/comparison-tests/basic/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/basic/expectedOutput-6.0/output.txt rename to test/comparison-tests/basic/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/basic/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/basic/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/basic/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/basic/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/basic/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/basic/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/basic/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/basic/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/basic/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/basic/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/basic/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/basic/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/basic/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/basic/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/basic/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/basic/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/basic/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/basic/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/basic/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/basic/expectedOutput/bundle.js diff --git a/test/comparison-tests/basic/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/basic/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/basic/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/basic/expectedOutput/output.txt diff --git a/test/comparison-tests/basic/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/basic/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/basic/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/basic/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/basic/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/basic/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/basic/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/basic/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/basic/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/basic/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/basic/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/basic/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/basic/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/basic/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/basic/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/basic/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/codeSplitting/expectedOutput-6.0/bundle.js b/test/comparison-tests/codeSplitting/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/codeSplitting/expectedOutput-6.0/bundle.js rename to test/comparison-tests/codeSplitting/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/codeSplitting/expectedOutput-6.0/c_ts-d_ts.bundle.js b/test/comparison-tests/codeSplitting/expectedOutput-transpile/c_ts-d_ts.bundle.js similarity index 100% rename from test/comparison-tests/codeSplitting/expectedOutput-6.0/c_ts-d_ts.bundle.js rename to test/comparison-tests/codeSplitting/expectedOutput-transpile/c_ts-d_ts.bundle.js diff --git a/test/comparison-tests/codeSplitting/expectedOutput-6.0/output.txt b/test/comparison-tests/codeSplitting/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/codeSplitting/expectedOutput-6.0/output.txt rename to test/comparison-tests/codeSplitting/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/codeSplitting/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/codeSplitting/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/codeSplitting/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/codeSplitting/expectedOutput/bundle.js diff --git a/test/comparison-tests/codeSplitting/expectedOutput-transpile-6.0/c_ts-d_ts.bundle.js b/test/comparison-tests/codeSplitting/expectedOutput/c_ts-d_ts.bundle.js similarity index 100% rename from test/comparison-tests/codeSplitting/expectedOutput-transpile-6.0/c_ts-d_ts.bundle.js rename to test/comparison-tests/codeSplitting/expectedOutput/c_ts-d_ts.bundle.js diff --git a/test/comparison-tests/codeSplitting/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/codeSplitting/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/codeSplitting/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/codeSplitting/expectedOutput/output.txt diff --git a/test/comparison-tests/colors/expectedOutput-6.0/bundle.js b/test/comparison-tests/colors/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/colors/expectedOutput-6.0/bundle.js rename to test/comparison-tests/colors/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/colors/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/colors/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/colors/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/colors/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/colors/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/colors/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/colors/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/colors/expectedOutput/bundle.js diff --git a/test/comparison-tests/colors/expectedOutput-6.0/output.txt b/test/comparison-tests/colors/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/colors/expectedOutput-6.0/output.txt rename to test/comparison-tests/colors/expectedOutput/output.txt diff --git a/test/comparison-tests/conditionalRequire/expectedOutput-6.0/bundle.js b/test/comparison-tests/conditionalRequire/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/conditionalRequire/expectedOutput-6.0/bundle.js rename to test/comparison-tests/conditionalRequire/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/conditionalRequire/expectedOutput-6.0/output.txt b/test/comparison-tests/conditionalRequire/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/conditionalRequire/expectedOutput-6.0/output.txt rename to test/comparison-tests/conditionalRequire/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/conditionalRequire/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/conditionalRequire/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/conditionalRequire/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/conditionalRequire/expectedOutput/bundle.js diff --git a/test/comparison-tests/conditionalRequire/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/conditionalRequire/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/conditionalRequire/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/conditionalRequire/expectedOutput/output.txt diff --git a/test/comparison-tests/create-and-execute-test.js b/test/comparison-tests/create-and-execute-test.js index 62afb0529..ce24153ec 100644 --- a/test/comparison-tests/create-and-execute-test.js +++ b/test/comparison-tests/create-and-execute-test.js @@ -29,7 +29,6 @@ if (saveOutputMode) { console.log('Will save output as --save-output was supplied...'); } -const typescriptVersion = semver.major(typescript.version) + '.' + semver.minor(typescript.version); const FLAKY = '_FLAKY_'; const IGNORE = '_IGNORE_'; @@ -144,12 +143,12 @@ function createPaths(stagingPath, test, options) { const testStagingPath = path.join(stagingPath, test + (options.transpileOnly ? '.transpile' : '')); rimraf.sync(testStagingPath); // Make sure it's clean - const transpilePath = options.transpileOnly ? 'transpile-' : ''; + const transpilePath = options.transpileOnly ? 'expectedOutput-transpile' : 'expectedOutput'; return { testStagingPath: testStagingPath, actualOutput: path.join(testStagingPath, 'actualOutput'), - expectedOutput: path.join(testStagingPath, 'expectedOutput-' + transpilePath + typescriptVersion), - originalExpectedOutput: path.join(testPath, 'expectedOutput-' + transpilePath + typescriptVersion), + expectedOutput: path.join(testStagingPath, transpilePath), + originalExpectedOutput: path.join(testPath, transpilePath), outputPath: testStagingPath, }; } @@ -213,11 +212,11 @@ function createWebpackWatchHandler(done, paths, testState, options, test) { function setPathsAndGetPatch(paths, testState, options) { let patch = ''; if (testState.iteration > 0) { - const transpilePath = options.transpileOnly ? 'transpile-' : ''; + const transpilePath = options.transpileOnly ? 'expectedOutput-transpile' : 'expectedOutput'; patch = 'patch' + (testState.iteration - 1); paths.actualOutput = path.join(paths.testStagingPath, 'actualOutput', patch); - paths.expectedOutput = path.join(paths.testStagingPath, 'expectedOutput-' + transpilePath + typescriptVersion, patch); - paths.originalExpectedOutput = path.join(testPath, 'expectedOutput-' + transpilePath + typescriptVersion, patch) + paths.expectedOutput = path.join(paths.testStagingPath, transpilePath, patch); + paths.originalExpectedOutput = path.join(testPath, transpilePath, patch); mkdirp.sync(paths.actualOutput); mkdirp.sync(paths.expectedOutput); if (saveOutputMode) mkdirp.sync(paths.originalExpectedOutput); diff --git a/test/comparison-tests/customTransformer/expectedOutput-6.0/bundle.js b/test/comparison-tests/customTransformer/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-6.0/bundle.js rename to test/comparison-tests/customTransformer/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/customTransformer/expectedOutput-6.0/output.txt b/test/comparison-tests/customTransformer/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-6.0/output.txt rename to test/comparison-tests/customTransformer/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/customTransformer/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/customTransformer/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/customTransformer/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/customTransformer/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/customTransformer/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/customTransformer/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/customTransformer/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/customTransformer/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/customTransformer/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/customTransformer/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/customTransformer/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/customTransformer/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/customTransformer/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/customTransformer/expectedOutput/bundle.js diff --git a/test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/customTransformer/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/customTransformer/expectedOutput/output.txt diff --git a/test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/customTransformer/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/customTransformer/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/customTransformer/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/customTransformer/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/customTransformer/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/customTransformer/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/customTransformer/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/customTransformer/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/customTransformer/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/bundle.js b/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/bundle.js rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/output.txt b/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/output.txt rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/customTransformerUsingPathString/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput/bundle.js diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/customTransformerUsingPathString/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput/output.txt diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/customTransformerUsingPathString/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/customTransformerUsingPathString/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/customTransformerUsingPathString/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/customTransformerUsingPathString/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/customTransformerUsingPathString/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/customTransformerUsingPathString/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/declarationDeps/expectedOutput-6.0/bundle.js b/test/comparison-tests/declarationDeps/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/declarationDeps/expectedOutput-6.0/bundle.js rename to test/comparison-tests/declarationDeps/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/declarationDeps/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/declarationDeps/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/declarationDeps/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/declarationDeps/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/declarationDeps/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/declarationDeps/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/declarationDeps/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/declarationDeps/expectedOutput/bundle.js diff --git a/test/comparison-tests/declarationDeps/expectedOutput-6.0/output.txt b/test/comparison-tests/declarationDeps/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/declarationDeps/expectedOutput-6.0/output.txt rename to test/comparison-tests/declarationDeps/expectedOutput/output.txt diff --git a/test/comparison-tests/declarationOutput/expectedOutput-6.0/.output/app.d.ts b/test/comparison-tests/declarationOutput/expectedOutput/.output/app.d.ts similarity index 100% rename from test/comparison-tests/declarationOutput/expectedOutput-6.0/.output/app.d.ts rename to test/comparison-tests/declarationOutput/expectedOutput/.output/app.d.ts diff --git a/test/comparison-tests/declarationOutput/expectedOutput-6.0/.output/sub/dep.d.ts b/test/comparison-tests/declarationOutput/expectedOutput/.output/sub/dep.d.ts similarity index 100% rename from test/comparison-tests/declarationOutput/expectedOutput-6.0/.output/sub/dep.d.ts rename to test/comparison-tests/declarationOutput/expectedOutput/.output/sub/dep.d.ts diff --git a/test/comparison-tests/declarationOutput/expectedOutput-6.0/bundle.js b/test/comparison-tests/declarationOutput/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/declarationOutput/expectedOutput-6.0/bundle.js rename to test/comparison-tests/declarationOutput/expectedOutput/bundle.js diff --git a/test/comparison-tests/declarationOutput/expectedOutput-6.0/output.txt b/test/comparison-tests/declarationOutput/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/declarationOutput/expectedOutput-6.0/output.txt rename to test/comparison-tests/declarationOutput/expectedOutput/output.txt diff --git a/test/comparison-tests/declarationOutputAllowJs/expectedOutput-6.0/bundle.js b/test/comparison-tests/declarationOutputAllowJs/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/declarationOutputAllowJs/expectedOutput-6.0/bundle.js rename to test/comparison-tests/declarationOutputAllowJs/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/declarationOutputAllowJs/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/declarationOutputAllowJs/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/declarationOutputAllowJs/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/declarationOutputAllowJs/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/declarationOutputAllowJs/expectedOutput-6.0/.output/app.d.ts b/test/comparison-tests/declarationOutputAllowJs/expectedOutput/.output/app.d.ts similarity index 100% rename from test/comparison-tests/declarationOutputAllowJs/expectedOutput-6.0/.output/app.d.ts rename to test/comparison-tests/declarationOutputAllowJs/expectedOutput/.output/app.d.ts diff --git a/test/comparison-tests/declarationOutputAllowJs/expectedOutput-6.0/.output/sub/dep.d.ts b/test/comparison-tests/declarationOutputAllowJs/expectedOutput/.output/sub/dep.d.ts similarity index 100% rename from test/comparison-tests/declarationOutputAllowJs/expectedOutput-6.0/.output/sub/dep.d.ts rename to test/comparison-tests/declarationOutputAllowJs/expectedOutput/.output/sub/dep.d.ts diff --git a/test/comparison-tests/declarationOutputAllowJs/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/declarationOutputAllowJs/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/declarationOutputAllowJs/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/declarationOutputAllowJs/expectedOutput/bundle.js diff --git a/test/comparison-tests/declarationOutputAllowJs/expectedOutput-6.0/output.txt b/test/comparison-tests/declarationOutputAllowJs/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/declarationOutputAllowJs/expectedOutput-6.0/output.txt rename to test/comparison-tests/declarationOutputAllowJs/expectedOutput/output.txt diff --git a/test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/.output/app.d.ts b/test/comparison-tests/declarationOutputWithMaps/expectedOutput/.output/app.d.ts similarity index 100% rename from test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/.output/app.d.ts rename to test/comparison-tests/declarationOutputWithMaps/expectedOutput/.output/app.d.ts diff --git a/test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/.output/app.d.ts.map b/test/comparison-tests/declarationOutputWithMaps/expectedOutput/.output/app.d.ts.map similarity index 100% rename from test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/.output/app.d.ts.map rename to test/comparison-tests/declarationOutputWithMaps/expectedOutput/.output/app.d.ts.map diff --git a/test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/.output/sub/dep.d.ts b/test/comparison-tests/declarationOutputWithMaps/expectedOutput/.output/sub/dep.d.ts similarity index 100% rename from test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/.output/sub/dep.d.ts rename to test/comparison-tests/declarationOutputWithMaps/expectedOutput/.output/sub/dep.d.ts diff --git a/test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/.output/sub/dep.d.ts.map b/test/comparison-tests/declarationOutputWithMaps/expectedOutput/.output/sub/dep.d.ts.map similarity index 100% rename from test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/.output/sub/dep.d.ts.map rename to test/comparison-tests/declarationOutputWithMaps/expectedOutput/.output/sub/dep.d.ts.map diff --git a/test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/bundle.js b/test/comparison-tests/declarationOutputWithMaps/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/bundle.js rename to test/comparison-tests/declarationOutputWithMaps/expectedOutput/bundle.js diff --git a/test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/output.txt b/test/comparison-tests/declarationOutputWithMaps/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/declarationOutputWithMaps/expectedOutput-6.0/output.txt rename to test/comparison-tests/declarationOutputWithMaps/expectedOutput/output.txt diff --git a/test/comparison-tests/declarationWatch/expectedOutput-6.0/bundle.js b/test/comparison-tests/declarationWatch/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/declarationWatch/expectedOutput-6.0/bundle.js rename to test/comparison-tests/declarationWatch/expectedOutput/bundle.js diff --git a/test/comparison-tests/declarationWatch/expectedOutput-6.0/output.txt b/test/comparison-tests/declarationWatch/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/declarationWatch/expectedOutput-6.0/output.txt rename to test/comparison-tests/declarationWatch/expectedOutput/output.txt diff --git a/test/comparison-tests/declarationWatch/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/declarationWatch/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/declarationWatch/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/declarationWatch/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/declarationWatch/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/declarationWatch/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/declarationWatch/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/declarationWatch/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/declarationWatch/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/declarationWatch/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/declarationWatch/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/declarationWatch/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/declarationWatch/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/declarationWatch/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/declarationWatch/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/declarationWatch/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/dependencyErrors/expectedOutput-6.0/bundle.js b/test/comparison-tests/dependencyErrors/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/dependencyErrors/expectedOutput-6.0/bundle.js rename to test/comparison-tests/dependencyErrors/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/dependencyErrors/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/dependencyErrors/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/dependencyErrors/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/dependencyErrors/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/dependencyErrors/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/dependencyErrors/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/dependencyErrors/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/dependencyErrors/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/dependencyErrors/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/dependencyErrors/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/dependencyErrors/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/dependencyErrors/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/dependencyErrors/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/dependencyErrors/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/dependencyErrors/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/dependencyErrors/expectedOutput/bundle.js diff --git a/test/comparison-tests/dependencyErrors/expectedOutput-6.0/output.txt b/test/comparison-tests/dependencyErrors/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/dependencyErrors/expectedOutput-6.0/output.txt rename to test/comparison-tests/dependencyErrors/expectedOutput/output.txt diff --git a/test/comparison-tests/dependencyErrors/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/dependencyErrors/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/dependencyErrors/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/dependencyErrors/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/dependencyErrors/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/dependencyErrors/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/dependencyErrors/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/dependencyErrors/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/errorFormatter/expectedOutput-6.0/bundle.js b/test/comparison-tests/errorFormatter/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/errorFormatter/expectedOutput-6.0/bundle.js rename to test/comparison-tests/errorFormatter/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/errorFormatter/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/errorFormatter/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/errorFormatter/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/errorFormatter/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/errorFormatter/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/errorFormatter/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/errorFormatter/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/errorFormatter/expectedOutput/bundle.js diff --git a/test/comparison-tests/errorFormatter/expectedOutput-6.0/output.txt b/test/comparison-tests/errorFormatter/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/errorFormatter/expectedOutput-6.0/output.txt rename to test/comparison-tests/errorFormatter/expectedOutput/output.txt diff --git a/test/comparison-tests/errors/expectedOutput-6.0/bundle.js b/test/comparison-tests/errors/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/errors/expectedOutput-6.0/bundle.js rename to test/comparison-tests/errors/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/errors/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/errors/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/errors/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/errors/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/errors/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/errors/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/errors/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/errors/expectedOutput/bundle.js diff --git a/test/comparison-tests/errors/expectedOutput-6.0/output.txt b/test/comparison-tests/errors/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/errors/expectedOutput-6.0/output.txt rename to test/comparison-tests/errors/expectedOutput/output.txt diff --git a/test/comparison-tests/es6/expectedOutput-6.0/bundle.js b/test/comparison-tests/es6/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/es6/expectedOutput-6.0/bundle.js rename to test/comparison-tests/es6/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/es6/expectedOutput-6.0/output.txt b/test/comparison-tests/es6/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/es6/expectedOutput-6.0/output.txt rename to test/comparison-tests/es6/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/es6/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/es6/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/es6/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/es6/expectedOutput/bundle.js diff --git a/test/comparison-tests/es6/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/es6/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/es6/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/es6/expectedOutput/output.txt diff --git a/test/comparison-tests/es6codeSplitting/expectedOutput-6.0/bundle.js b/test/comparison-tests/es6codeSplitting/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/es6codeSplitting/expectedOutput-6.0/bundle.js rename to test/comparison-tests/es6codeSplitting/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/es6codeSplitting/expectedOutput-6.0/c_ts-d_ts.bundle.js b/test/comparison-tests/es6codeSplitting/expectedOutput-transpile/c_ts-d_ts.bundle.js similarity index 100% rename from test/comparison-tests/es6codeSplitting/expectedOutput-6.0/c_ts-d_ts.bundle.js rename to test/comparison-tests/es6codeSplitting/expectedOutput-transpile/c_ts-d_ts.bundle.js diff --git a/test/comparison-tests/es6codeSplitting/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/es6codeSplitting/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/es6codeSplitting/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/es6codeSplitting/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/es6codeSplitting/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/es6codeSplitting/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/es6codeSplitting/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/es6codeSplitting/expectedOutput/bundle.js diff --git a/test/comparison-tests/es6codeSplitting/expectedOutput-transpile-6.0/c_ts-d_ts.bundle.js b/test/comparison-tests/es6codeSplitting/expectedOutput/c_ts-d_ts.bundle.js similarity index 100% rename from test/comparison-tests/es6codeSplitting/expectedOutput-transpile-6.0/c_ts-d_ts.bundle.js rename to test/comparison-tests/es6codeSplitting/expectedOutput/c_ts-d_ts.bundle.js diff --git a/test/comparison-tests/es6codeSplitting/expectedOutput-6.0/output.txt b/test/comparison-tests/es6codeSplitting/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/es6codeSplitting/expectedOutput-6.0/output.txt rename to test/comparison-tests/es6codeSplitting/expectedOutput/output.txt diff --git a/test/comparison-tests/es6withCJS/expectedOutput-6.0/bundle.js b/test/comparison-tests/es6withCJS/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/es6withCJS/expectedOutput-6.0/bundle.js rename to test/comparison-tests/es6withCJS/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/es6withCJS/expectedOutput-6.0/output.txt b/test/comparison-tests/es6withCJS/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/es6withCJS/expectedOutput-6.0/output.txt rename to test/comparison-tests/es6withCJS/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/es6withCJS/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/es6withCJS/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/es6withCJS/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/es6withCJS/expectedOutput/bundle.js diff --git a/test/comparison-tests/es6withCJS/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/es6withCJS/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/es6withCJS/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/es6withCJS/expectedOutput/output.txt diff --git a/test/comparison-tests/externals/expectedOutput-6.0/bundle.js b/test/comparison-tests/externals/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/externals/expectedOutput-6.0/bundle.js rename to test/comparison-tests/externals/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/externals/expectedOutput-6.0/output.txt b/test/comparison-tests/externals/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/externals/expectedOutput-6.0/output.txt rename to test/comparison-tests/externals/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/externals/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/externals/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/externals/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/externals/expectedOutput/bundle.js diff --git a/test/comparison-tests/externals/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/externals/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/externals/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/externals/expectedOutput/output.txt diff --git a/test/comparison-tests/ignoreDiagnostics/expectedOutput-6.0/bundle.js b/test/comparison-tests/ignoreDiagnostics/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/ignoreDiagnostics/expectedOutput-6.0/bundle.js rename to test/comparison-tests/ignoreDiagnostics/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/ignoreDiagnostics/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/ignoreDiagnostics/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/ignoreDiagnostics/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/ignoreDiagnostics/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/ignoreDiagnostics/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/ignoreDiagnostics/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/ignoreDiagnostics/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/ignoreDiagnostics/expectedOutput/bundle.js diff --git a/test/comparison-tests/ignoreDiagnostics/expectedOutput-6.0/output.txt b/test/comparison-tests/ignoreDiagnostics/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/ignoreDiagnostics/expectedOutput-6.0/output.txt rename to test/comparison-tests/ignoreDiagnostics/expectedOutput/output.txt diff --git a/test/comparison-tests/importsWatch/expectedOutput-6.0/bundle.js b/test/comparison-tests/importsWatch/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/importsWatch/expectedOutput-6.0/bundle.js rename to test/comparison-tests/importsWatch/expectedOutput/bundle.js diff --git a/test/comparison-tests/importsWatch/expectedOutput-6.0/output.txt b/test/comparison-tests/importsWatch/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/importsWatch/expectedOutput-6.0/output.txt rename to test/comparison-tests/importsWatch/expectedOutput/output.txt diff --git a/test/comparison-tests/importsWatch/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/importsWatch/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/importsWatch/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/importsWatch/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/importsWatch/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/importsWatch/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/importsWatch/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/importsWatch/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/instance/expectedOutput-6.0/err.txt b/test/comparison-tests/instance/expectedOutput-transpile/err.txt similarity index 100% rename from test/comparison-tests/instance/expectedOutput-6.0/err.txt rename to test/comparison-tests/instance/expectedOutput-transpile/err.txt diff --git a/test/comparison-tests/instance/expectedOutput-transpile-6.0/err.txt b/test/comparison-tests/instance/expectedOutput/err.txt similarity index 100% rename from test/comparison-tests/instance/expectedOutput-transpile-6.0/err.txt rename to test/comparison-tests/instance/expectedOutput/err.txt diff --git a/test/comparison-tests/issue372/expectedOutput-6.0/bundle.js b/test/comparison-tests/issue372/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/issue372/expectedOutput-6.0/bundle.js rename to test/comparison-tests/issue372/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/issue372/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/issue372/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/issue372/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/issue372/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/issue372/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/issue372/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/issue372/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/issue372/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/issue372/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/issue372/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/issue372/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/issue372/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/issue372/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/issue372/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/issue372/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/issue372/expectedOutput/bundle.js diff --git a/test/comparison-tests/issue372/expectedOutput-6.0/output.txt b/test/comparison-tests/issue372/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/issue372/expectedOutput-6.0/output.txt rename to test/comparison-tests/issue372/expectedOutput/output.txt diff --git a/test/comparison-tests/issue372/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/issue372/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/issue372/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/issue372/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/issue372/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/issue372/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/issue372/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/issue372/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/issue441/expectedOutput-6.0/bundle.js b/test/comparison-tests/issue441/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-6.0/bundle.js rename to test/comparison-tests/issue441/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/issue441/expectedOutput-6.0/output.txt b/test/comparison-tests/issue441/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-6.0/output.txt rename to test/comparison-tests/issue441/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/issue441/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/issue441/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/issue441/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/issue441/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/issue441/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/issue441/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/issue441/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/issue441/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/issue441/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/issue441/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/issue441/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/issue441/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/issue441/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/issue441/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/issue441/expectedOutput/bundle.js diff --git a/test/comparison-tests/issue441/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/issue441/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/issue441/expectedOutput/output.txt diff --git a/test/comparison-tests/issue441/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/issue441/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/issue441/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/issue441/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/issue441/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/issue441/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/issue441/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/issue441/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/issue441/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/issue441/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/issue441/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/issue441/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/issue441/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/issue71/expectedOutput-6.0/bundle.js b/test/comparison-tests/issue71/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/issue71/expectedOutput-6.0/bundle.js rename to test/comparison-tests/issue71/expectedOutput/bundle.js diff --git a/test/comparison-tests/issue71/expectedOutput-6.0/output.txt b/test/comparison-tests/issue71/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/issue71/expectedOutput-6.0/output.txt rename to test/comparison-tests/issue71/expectedOutput/output.txt diff --git a/test/comparison-tests/loaderOptionsCaching/expectedOutput-6.0/bundle.js b/test/comparison-tests/loaderOptionsCaching/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/loaderOptionsCaching/expectedOutput-6.0/bundle.js rename to test/comparison-tests/loaderOptionsCaching/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/loaderOptionsCaching/expectedOutput-6.0/output.txt b/test/comparison-tests/loaderOptionsCaching/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/loaderOptionsCaching/expectedOutput-6.0/output.txt rename to test/comparison-tests/loaderOptionsCaching/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/loaderOptionsCaching/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/loaderOptionsCaching/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/loaderOptionsCaching/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/loaderOptionsCaching/expectedOutput/bundle.js diff --git a/test/comparison-tests/loaderOptionsCaching/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/loaderOptionsCaching/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/loaderOptionsCaching/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/loaderOptionsCaching/expectedOutput/output.txt diff --git a/test/comparison-tests/localTsImplementationOfTypings/expectedOutput-6.0/bundle.js b/test/comparison-tests/localTsImplementationOfTypings/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/localTsImplementationOfTypings/expectedOutput-6.0/bundle.js rename to test/comparison-tests/localTsImplementationOfTypings/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/localTsImplementationOfTypings/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/localTsImplementationOfTypings/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/localTsImplementationOfTypings/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/localTsImplementationOfTypings/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/localTsImplementationOfTypings/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/localTsImplementationOfTypings/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/localTsImplementationOfTypings/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/localTsImplementationOfTypings/expectedOutput/bundle.js diff --git a/test/comparison-tests/localTsImplementationOfTypings/expectedOutput-6.0/output.txt b/test/comparison-tests/localTsImplementationOfTypings/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/localTsImplementationOfTypings/expectedOutput-6.0/output.txt rename to test/comparison-tests/localTsImplementationOfTypings/expectedOutput/output.txt diff --git a/test/comparison-tests/node/expectedOutput-6.0/bundle.js b/test/comparison-tests/node/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/node/expectedOutput-6.0/bundle.js rename to test/comparison-tests/node/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/node/expectedOutput-6.0/output.txt b/test/comparison-tests/node/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/node/expectedOutput-6.0/output.txt rename to test/comparison-tests/node/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/node/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/node/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/node/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/node/expectedOutput/bundle.js diff --git a/test/comparison-tests/node/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/node/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/node/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/node/expectedOutput/output.txt diff --git a/test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-6.0/bundle.js b/test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-6.0/bundle.js rename to test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput/bundle.js diff --git a/test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-6.0/output.txt b/test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput-6.0/output.txt rename to test/comparison-tests/nodeModulesMeaningfulErrorWhenImportingTs/expectedOutput/output.txt diff --git a/test/comparison-tests/nodeResolution/expectedOutput-6.0/bundle.js b/test/comparison-tests/nodeResolution/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/nodeResolution/expectedOutput-6.0/bundle.js rename to test/comparison-tests/nodeResolution/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/nodeResolution/expectedOutput-6.0/output.txt b/test/comparison-tests/nodeResolution/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/nodeResolution/expectedOutput-6.0/output.txt rename to test/comparison-tests/nodeResolution/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/nodeResolution/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/nodeResolution/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/nodeResolution/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/nodeResolution/expectedOutput/bundle.js diff --git a/test/comparison-tests/nodeResolution/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/nodeResolution/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/nodeResolution/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/nodeResolution/expectedOutput/output.txt diff --git a/test/comparison-tests/nolib/expectedOutput-6.0/bundle.js b/test/comparison-tests/nolib/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/nolib/expectedOutput-6.0/bundle.js rename to test/comparison-tests/nolib/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/nolib/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/nolib/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/nolib/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/nolib/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/nolib/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/nolib/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/nolib/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/nolib/expectedOutput/bundle.js diff --git a/test/comparison-tests/nolib/expectedOutput-6.0/output.txt b/test/comparison-tests/nolib/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/nolib/expectedOutput-6.0/output.txt rename to test/comparison-tests/nolib/expectedOutput/output.txt diff --git a/test/comparison-tests/npmLink/expectedOutput-6.0/bundle.js b/test/comparison-tests/npmLink/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/npmLink/expectedOutput-6.0/bundle.js rename to test/comparison-tests/npmLink/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/npmLink/expectedOutput-6.0/output.txt b/test/comparison-tests/npmLink/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/npmLink/expectedOutput-6.0/output.txt rename to test/comparison-tests/npmLink/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/npmLink/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/npmLink/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/npmLink/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/npmLink/expectedOutput/bundle.js diff --git a/test/comparison-tests/npmLink/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/npmLink/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/npmLink/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/npmLink/expectedOutput/output.txt diff --git a/test/comparison-tests/onlyCompileBundledFiles/expectedOutput-6.0/bundle.js b/test/comparison-tests/onlyCompileBundledFiles/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/onlyCompileBundledFiles/expectedOutput-6.0/bundle.js rename to test/comparison-tests/onlyCompileBundledFiles/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/onlyCompileBundledFiles/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/onlyCompileBundledFiles/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/onlyCompileBundledFiles/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/onlyCompileBundledFiles/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/onlyCompileBundledFiles/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/onlyCompileBundledFiles/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/onlyCompileBundledFiles/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/onlyCompileBundledFiles/expectedOutput/bundle.js diff --git a/test/comparison-tests/onlyCompileBundledFiles/expectedOutput-6.0/output.txt b/test/comparison-tests/onlyCompileBundledFiles/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/onlyCompileBundledFiles/expectedOutput-6.0/output.txt rename to test/comparison-tests/onlyCompileBundledFiles/expectedOutput/output.txt diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/bundle.js b/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/bundle.js rename to test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/output.txt b/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/output.txt rename to test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/otherLoadersWatch/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/otherLoadersWatch/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/otherLoadersWatch/expectedOutput/bundle.js diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/otherLoadersWatch/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/otherLoadersWatch/expectedOutput/output.txt diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/otherLoadersWatch/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/otherLoadersWatch/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/otherLoadersWatch/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/otherLoadersWatch/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/otherLoadersWatch/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/otherLoadersWatch/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/otherLoadersWatch/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/otherLoadersWatch/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/otherLoadersWatch/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/production/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/production/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/production/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/production/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/production/expectedOutput-6.0/output.txt b/test/comparison-tests/production/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/production/expectedOutput-6.0/output.txt rename to test/comparison-tests/production/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferences/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferences/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferences/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferences/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferences/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferences/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferences/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferences/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferences/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferences/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferences/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferences/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferences/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferences/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferences/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferences/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferences/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferences/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferences/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferences/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferences/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferences/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferences/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferences/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferences/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferences/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferences/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferences/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferences/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferences/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferences/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/common/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/common/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/common/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/common/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/common/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/common/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/common/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/common/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/indirectWithError/fileWithError.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/indirectWithError/fileWithError.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/indirectWithError/fileWithError.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/indirectWithError/fileWithError.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/indirectWithError/fileWithError.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/indirectWithError/fileWithError.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/indirectWithError/fileWithError.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/indirectWithError/fileWithError.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/indirectWithError/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/indirectWithError/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/indirectWithError/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/indirectWithError/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/indirectWithError/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/indirectWithError/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/indirectWithError/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/indirectWithError/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/indirectWithError/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/indirectWithError/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/indirectWithError/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/indirectWithError/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/lib/fileWithError.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/lib/fileWithError.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/lib/fileWithError.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/lib/fileWithError.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/lib/fileWithError.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/lib/fileWithError.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/lib/fileWithError.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/lib/fileWithError.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch0/lib/fileWithError.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch0/lib/fileWithError.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch0/lib/fileWithError.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch0/lib/fileWithError.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch1/indirectWithError/fileWithError.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch1/indirectWithError/fileWithError.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch1/indirectWithError/fileWithError.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch1/indirectWithError/fileWithError.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch1/indirectWithError/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch1/indirectWithError/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch1/indirectWithError/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch1/indirectWithError/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch3/unreferencedIndirect/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch3/unreferencedIndirect/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch3/unreferencedIndirect/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch3/unreferencedIndirect/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch3/unreferencedIndirect/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch3/unreferencedIndirect/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch3/unreferencedIndirect/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch3/unreferencedIndirect/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch3/unreferencedIndirect/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch3/unreferencedIndirect/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch3/unreferencedIndirect/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch3/unreferencedIndirect/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch4/unreferencedIndirect/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch4/unreferencedIndirect/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch4/unreferencedIndirect/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch4/unreferencedIndirect/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch4/unreferencedIndirect/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch4/unreferencedIndirect/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch4/unreferencedIndirect/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch4/unreferencedIndirect/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch4/unreferencedIndirect/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch4/unreferencedIndirect/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch4/unreferencedIndirect/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch4/unreferencedIndirect/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch5/unreferenced/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch5/unreferenced/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch5/unreferenced/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch5/unreferenced/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch5/unreferenced/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch5/unreferenced/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch5/unreferenced/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch5/unreferenced/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch5/unreferenced/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch5/unreferenced/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch5/unreferenced/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/patch5/unreferenced/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferenced/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferenced/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferenced/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferenced/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferenced/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferenced/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferenced/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferenced/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferenced/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferenced/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferenced/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferenced/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferencedIndirect/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferencedIndirect/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferencedIndirect/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferencedIndirect/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferencedIndirect/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferencedIndirect/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferencedIndirect/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferencedIndirect/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferencedIndirect/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferencedIndirect/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/unreferencedIndirect/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/unreferencedIndirect/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/utils/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/utils/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/utils/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/utils/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/utils/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/utils/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/common/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/common/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/common/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/common/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/common/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/common/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/common/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/common/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/indirectWithError/fileWithError.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/indirectWithError/fileWithError.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/indirectWithError/fileWithError.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/indirectWithError/fileWithError.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/indirectWithError/fileWithError.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/indirectWithError/fileWithError.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/indirectWithError/fileWithError.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/indirectWithError/fileWithError.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/indirectWithError/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/indirectWithError/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/indirectWithError/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/indirectWithError/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/indirectWithError/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/indirectWithError/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/indirectWithError/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/indirectWithError/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/indirectWithError/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/indirectWithError/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/indirectWithError/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/indirectWithError/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/lib/fileWithError.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/lib/fileWithError.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/lib/fileWithError.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/lib/fileWithError.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/lib/fileWithError.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/lib/fileWithError.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/lib/fileWithError.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/lib/fileWithError.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch0/lib/fileWithError.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch0/lib/fileWithError.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch0/lib/fileWithError.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch0/lib/fileWithError.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch1/indirectWithError/fileWithError.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch1/indirectWithError/fileWithError.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch1/indirectWithError/fileWithError.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch1/indirectWithError/fileWithError.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch1/indirectWithError/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch1/indirectWithError/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch1/indirectWithError/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch1/indirectWithError/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch2/unreferenced/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch2/unreferenced/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch2/unreferenced/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch2/unreferenced/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch2/unreferenced/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch2/unreferenced/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch2/unreferenced/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch2/unreferenced/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch3/unreferencedIndirect/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch3/unreferencedIndirect/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch3/unreferencedIndirect/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch3/unreferencedIndirect/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch3/unreferencedIndirect/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch3/unreferencedIndirect/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch3/unreferencedIndirect/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch3/unreferencedIndirect/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch3/unreferencedIndirect/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch3/unreferencedIndirect/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch3/unreferencedIndirect/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch3/unreferencedIndirect/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch4/unreferencedIndirect/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch4/unreferencedIndirect/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch4/unreferencedIndirect/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch4/unreferencedIndirect/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch4/unreferencedIndirect/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch4/unreferencedIndirect/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch4/unreferencedIndirect/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch4/unreferencedIndirect/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch4/unreferencedIndirect/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch4/unreferencedIndirect/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch4/unreferencedIndirect/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch4/unreferencedIndirect/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch5/unreferenced/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch5/unreferenced/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch5/unreferenced/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch5/unreferenced/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch5/unreferenced/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch5/unreferenced/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch5/unreferenced/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch5/unreferenced/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch5/unreferenced/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/patch5/unreferenced/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/patch5/unreferenced/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/patch5/unreferenced/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferenced/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferenced/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferenced/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferenced/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferenced/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferenced/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferenced/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferenced/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferenced/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferenced/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferenced/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferenced/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferencedIndirect/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferencedIndirect/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferencedIndirect/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferencedIndirect/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferencedIndirect/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferencedIndirect/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferencedIndirect/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferencedIndirect/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferencedIndirect/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferencedIndirect/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/unreferencedIndirect/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/unreferencedIndirect/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/utils/index.d.ts b/test/comparison-tests/projectReferencesMultiple/expectedOutput/utils/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/utils/index.d.ts rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/utils/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/utils/index.js b/test/comparison-tests/projectReferencesMultiple/expectedOutput/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/utils/index.js rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultiple/expectedOutput/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultiple/expectedOutput-transpile-6.0/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultiple/expectedOutput/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/common/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/common/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/common/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/common/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/common/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/common/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/common/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/common/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/indirect/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/indirect/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/indirect/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/indirect/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/indirect/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/indirect/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/indirect/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/indirect/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/indirect/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/indirect/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/indirect/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/indirect/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch0/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch0/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch0/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch0/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch0/common/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch0/common/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch0/common/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch0/common/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch0/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch0/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch1/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch1/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch1/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch1/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch1/utils/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch1/utils/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch1/utils/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch1/utils/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch1/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch1/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch1/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch1/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch1/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch1/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch1/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch1/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch2/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch2/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch2/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch2/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/common/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/common/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/common/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/common/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/common/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/common/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/common/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/common/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch3/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/common/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/common/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/common/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/common/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/common/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/common/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/common/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/common/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch4/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch5/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch5/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch5/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch5/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch5/utils/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch5/utils/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch5/utils/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch5/utils/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch5/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch5/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch5/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch5/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch5/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch5/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch5/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch5/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch6/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch6/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch6/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch6/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch6/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch6/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch6/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch6/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch6/utils/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch6/utils/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch6/utils/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch6/utils/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch6/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch6/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch6/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch6/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch6/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch6/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch6/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/patch6/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/utils/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/utils/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/utils/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/utils/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/common/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/common/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/common/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/common/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/common/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/common/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/common/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/common/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/indirect/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/indirect/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/indirect/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/indirect/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/indirect/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/indirect/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/indirect/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/indirect/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/indirect/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/indirect/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/indirect/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/indirect/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch0/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch0/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch0/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch0/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch0/common/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch0/common/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch0/common/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch0/common/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch0/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch0/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch1/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch1/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch1/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch1/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch1/utils/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch1/utils/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch1/utils/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch1/utils/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch1/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch1/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch1/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch1/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch1/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch1/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch1/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch1/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch2/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch2/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch2/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch2/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/common/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/common/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/common/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/common/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/common/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/common/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/common/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/common/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch3/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch3/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/common/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/common/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/common/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/common/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/common/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/common/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/common/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/common/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch4/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch4/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch5/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch5/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch5/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch5/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch5/utils/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch5/utils/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch5/utils/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch5/utils/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch5/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch5/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch5/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch5/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch5/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch5/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch5/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch5/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch6/app/bundle.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch6/app/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch6/app/bundle.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch6/app/bundle.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch6/output.txt b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch6/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-6.0/patch6/output.txt rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch6/output.txt diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch6/utils/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch6/utils/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch6/utils/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch6/utils/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch6/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch6/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch6/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch6/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch6/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch6/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/patch6/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/patch6/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/utils/index.d.ts b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/utils/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/utils/index.d.ts rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/utils/index.d.ts diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/utils/index.js b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/utils/index.js similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/utils/index.js rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/utils/index.js diff --git a/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/utils/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/utils/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput-transpile-6.0/utils/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesMultipleDifferentInstance/expectedOutput/utils/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/lib/foo.d.ts b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/lib/foo.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/lib/foo.d.ts rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/lib/foo.d.ts diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/lib/foo.js b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/lib/foo.js similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/lib/foo.js rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/lib/foo.js diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/lib/foo.d.ts b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/lib/foo.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/lib/foo.d.ts rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/lib/foo.d.ts diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/lib/foo.js b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/lib/foo.js similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/lib/foo.js rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/lib/foo.js diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNoSourceMap/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNoSourceMap/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/app.d.ts b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/app.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/app.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/app.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/app.d.ts b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/app.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/app.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/app.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_ErrorInProject_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/app.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/app.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/app.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/app.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SemanticErrorInReference_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/app.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/app.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/app.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/app.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_SyntaxErrorInReference_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesNotBuilt_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/lib/out/index.js b/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesOutDir/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesOutDir/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDir/expectedOutput/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDir/expectedOutput/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/lib/out/index.js b/test/comparison-tests/projectReferencesOutDir/expectedOutput/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDir/expectedOutput/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDir/expectedOutput/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDir/expectedOutput/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDir/expectedOutput/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDir/expectedOutput/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesOutDir/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDir/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesOutDir/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch2/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch2/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch2/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch2/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch2/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch2/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch2/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch2/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch2/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch2/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch2/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch2/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch0/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch2/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch2/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch2/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch2/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch2/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch2/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch2/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch2/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch2/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch2/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch2/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch2/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch3/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput-transpile-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJson/expectedOutput/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch2/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch2/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch2/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch2/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch2/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch2/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch2/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch2/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch2/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch2/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch2/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch2/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch2/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch2/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch2/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch2/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch2/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch2/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch2/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch2/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch2/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch2/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch2/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch2/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/lib/out/index.d.ts b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/lib/out/index.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/lib/out/index.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/lib/out/index.js.map b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/lib/out/index.js.map rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/lib/out/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/lib/out/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch3/lib/out/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/lib/out/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput-transpile-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesOutDirWithPackageJsonAlreadyBuilt/expectedOutput/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/lib/out/index.js b/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/lib/out/index.js rename to test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/lib/out/index.js.map b/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesRootDir/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesRootDir/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesRootDir/expectedOutput/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesRootDir/expectedOutput/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/lib/out/index.js b/test/comparison-tests/projectReferencesRootDir/expectedOutput/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/lib/out/index.js rename to test/comparison-tests/projectReferencesRootDir/expectedOutput/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/lib/out/index.js.map b/test/comparison-tests/projectReferencesRootDir/expectedOutput/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesRootDir/expectedOutput/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesRootDir/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesRootDir/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesRootDir/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesRootDir/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesRootDir/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/lib/out/index.js b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/lib/out/index.js rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/lib/out/index.js.map b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/lib/out/index.d.ts b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/lib/out/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/lib/out/index.d.ts rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/lib/out/index.d.ts diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/lib/out/index.js b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/lib/out/index.js similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/lib/out/index.js rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/lib/out/index.js diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/lib/out/index.js.map b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/lib/out/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/lib/out/index.js.map rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/lib/out/index.js.map diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesRootDirInvalidConfig/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/common/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/common/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/common/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/common/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/common/dist/index.js b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/common/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/common/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/common/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/patch0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/patch0/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/patch0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/patch0/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/patch0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/patch0/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/patch0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/patch0/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/patch0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/patch0/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/patch0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/patch0/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/common/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/common/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/common/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/common/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/common/dist/index.js b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/common/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/common/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/common/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/patch0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/patch0/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/patch0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/patch0/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/patch0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/patch0/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/patch0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/patch0/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/patch0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/patch0/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/patch0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/patch0/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesSymLinks/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesSymLinks/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/common/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/common/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/common/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/common/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/common/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/common/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/common/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/common/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/patch0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/patch0/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/patch0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/patch0/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/patch0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/patch0/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/patch0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/patch0/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/patch0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/patch0/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/patch0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/patch0/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/common/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/common/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/common/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/common/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/common/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/common/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/common/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/common/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/patch0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/patch0/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/patch0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/patch0/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/patch0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/patch0/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/patch0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/patch0/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/patch0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/patch0/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/patch0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/patch0/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesSymLinksPreserve/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/common/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/common/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/common/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/common/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/common/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/common/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/common/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/common/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/patch0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/patch0/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/patch0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/patch0/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/patch0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/patch0/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/patch0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/patch0/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/patch0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/patch0/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/patch0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/patch0/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/common/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/common/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/common/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/common/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/common/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/common/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/common/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/common/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/patch0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/patch0/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/patch0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/patch0/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/patch0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/patch0/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/patch0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/patch0/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/patch0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/patch0/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/patch0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/patch0/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesSymLinksPreserve_WatchApi/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/common/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/common/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/common/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/common/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/common/dist/index.js b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/common/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/common/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/common/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/patch0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/patch0/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/patch0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/patch0/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/patch0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/patch0/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/patch0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/patch0/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/patch0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/patch0/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/patch0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/patch0/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/common/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/common/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/common/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/common/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/common/dist/index.js b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/common/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/common/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/common/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/common/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/common/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/common/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/patch0/app/dist/index.js b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/patch0/app/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/patch0/app/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/patch0/app/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/patch0/lib/dist/index.d.ts b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/patch0/lib/dist/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/patch0/lib/dist/index.d.ts rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/patch0/lib/dist/index.d.ts diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/patch0/lib/dist/index.js b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/patch0/lib/dist/index.js similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/patch0/lib/dist/index.js rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/patch0/lib/dist/index.js diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesSymLinks_WatchApi/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch2/lib/index.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch2/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch2/lib/index.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch2/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch2/lib/index.js.map b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch2/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch2/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch2/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch2/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch2/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch2/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch2/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/lib/index.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/lib/index.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/lib/index.js.map b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput-transpile/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch2/lib/index.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch2/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch2/lib/index.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch2/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch2/lib/index.js.map b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch2/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch2/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch2/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch2/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch2/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch2/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch2/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/lib/index.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/lib/index.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/lib/index.js.map b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch3/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesWatch/expectedOutput/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch/expectedOutput-transpile-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesWatch/expectedOutput/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch1/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput-transpile-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt/expectedOutput/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/app.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/app.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/app.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/app.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch0/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch0/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/app.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/app.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/app.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/app.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch2/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch2/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/patch2/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/patch2/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch1/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput-transpile-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFilesAlreadyBuilt_WatchApi/expectedOutput/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/app.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/app.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/app.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/app.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/app.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/app.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/app.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/app.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch1/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch1/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/patch1/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/patch1/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/helper.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.d.ts rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/helper.d.ts diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/helper.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/helper.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/helper.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/helper.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/helper.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatchRefWithTwoFiles_WatchApi/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/lib/index.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch2/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/lib/index.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch2/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch2/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch2/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch2/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch2/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/lib/index.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/lib/index.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/app.d.ts b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/app.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/app.d.ts rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/app.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch0/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch0/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch1/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch1/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch1/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch1/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/app.d.ts b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/app.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/app.d.ts rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/app.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/lib/index.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/lib/index.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch2/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch3/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch3/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch3/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch4/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch4/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch4/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch4/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-transpile-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch5/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch5/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/patch5/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/patch5/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput-6.0/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_Composite_WatchApi/expectedOutput/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch2/lib/index.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch2/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch2/lib/index.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch2/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch2/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch2/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch2/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch2/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch2/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch2/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch2/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch2/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/lib/index.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/lib/index.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch2/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch2/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch2/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch2/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch2/lib/index.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch2/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch2/lib/index.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch2/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch2/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch2/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch2/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch2/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch2/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch2/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch2/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch2/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch2/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch2/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch2/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch2/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.d.ts b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.d.ts rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/lib/index.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.js.map b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/lib/index.js.map rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch3/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch3/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch3/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch4/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch4/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch4/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch4/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch4/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch4/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-6.0/patch4/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch4/output.txt diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch5/bundle.js b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch5/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch5/bundle.js rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch5/bundle.js diff --git a/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch5/output.txt b/test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch5/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput-transpile-6.0/patch5/output.txt rename to test/comparison-tests/projectReferencesWatch_WatchApi/expectedOutput/patch5/output.txt diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/bundle.js b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/bundle.js rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/lib/index.js b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/lib/index.js diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/output.txt b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-6.0/output.txt rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/bundle.js diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/lib/index.d.ts b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/lib/index.d.ts similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/lib/index.d.ts rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/lib/index.d.ts diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/lib/index.js b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/lib/index.js similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/lib/index.js rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/lib/index.js diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/lib/index.js.map b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/lib/index.js.map similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/lib/index.js.map rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/lib/index.js.map diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/lib/tsconfig.tsbuildinfo similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/lib/tsconfig.tsbuildinfo rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/lib/tsconfig.tsbuildinfo diff --git a/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/projectReferencesWithCustomTransformer/expectedOutput/output.txt diff --git a/test/comparison-tests/replacement/expectedOutput-6.0/bundle.js b/test/comparison-tests/replacement/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/replacement/expectedOutput-6.0/bundle.js rename to test/comparison-tests/replacement/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/replacement/expectedOutput-6.0/output.txt b/test/comparison-tests/replacement/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/replacement/expectedOutput-6.0/output.txt rename to test/comparison-tests/replacement/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/replacement/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/replacement/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/replacement/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/replacement/expectedOutput/bundle.js diff --git a/test/comparison-tests/replacement/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/replacement/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/replacement/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/replacement/expectedOutput/output.txt diff --git a/test/comparison-tests/reportFiles/expectedOutput-6.0/bundle.js b/test/comparison-tests/reportFiles/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/reportFiles/expectedOutput-6.0/bundle.js rename to test/comparison-tests/reportFiles/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/reportFiles/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/reportFiles/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/reportFiles/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/reportFiles/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/reportFiles/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/reportFiles/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/reportFiles/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/reportFiles/expectedOutput/bundle.js diff --git a/test/comparison-tests/reportFiles/expectedOutput-6.0/output.txt b/test/comparison-tests/reportFiles/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/reportFiles/expectedOutput-6.0/output.txt rename to test/comparison-tests/reportFiles/expectedOutput/output.txt diff --git a/test/comparison-tests/resolveJsonModule/expectedOutput-6.0/bundle.js b/test/comparison-tests/resolveJsonModule/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/resolveJsonModule/expectedOutput-6.0/bundle.js rename to test/comparison-tests/resolveJsonModule/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/resolveJsonModule/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/resolveJsonModule/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/resolveJsonModule/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/resolveJsonModule/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/resolveJsonModule/expectedOutput-6.0/app.d.ts b/test/comparison-tests/resolveJsonModule/expectedOutput/app.d.ts similarity index 100% rename from test/comparison-tests/resolveJsonModule/expectedOutput-6.0/app.d.ts rename to test/comparison-tests/resolveJsonModule/expectedOutput/app.d.ts diff --git a/test/comparison-tests/resolveJsonModule/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/resolveJsonModule/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/resolveJsonModule/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/resolveJsonModule/expectedOutput/bundle.js diff --git a/test/comparison-tests/resolveJsonModule/expectedOutput-6.0/output.txt b/test/comparison-tests/resolveJsonModule/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/resolveJsonModule/expectedOutput-6.0/output.txt rename to test/comparison-tests/resolveJsonModule/expectedOutput/output.txt diff --git a/test/comparison-tests/run-tests.js b/test/comparison-tests/run-tests.js index 8d261cd31..9e60604b9 100644 --- a/test/comparison-tests/run-tests.js +++ b/test/comparison-tests/run-tests.js @@ -46,10 +46,26 @@ let failingTests = []; // set up new empty staging area const stagingPath = path.resolve(__dirname, '../../.test'); -rimraf.sync(stagingPath); +removeStagingPath(stagingPath); runTests(); +function removeStagingPath(folderPath) { + const maxAttempts = 5; + let attempt = 0; + while (++attempt <= maxAttempts) { + try { + rimraf.sync(folderPath); + return; + } catch (error) { + if (error && error.code === 'ENOTEMPTY' && attempt < maxAttempts) { + continue; + } + throw error; + } + } +} + // -------------------------------------------------------------- function runTests() { diff --git a/test/comparison-tests/simpleDependency/expectedOutput-6.0/bundle.js b/test/comparison-tests/simpleDependency/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-6.0/bundle.js rename to test/comparison-tests/simpleDependency/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/simpleDependency/expectedOutput-6.0/output.txt b/test/comparison-tests/simpleDependency/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-6.0/output.txt rename to test/comparison-tests/simpleDependency/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/simpleDependency/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/simpleDependency/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/simpleDependency/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/simpleDependency/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/simpleDependency/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/simpleDependency/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/simpleDependency/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/simpleDependency/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/simpleDependency/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/simpleDependency/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/simpleDependency/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/simpleDependency/expectedOutput/bundle.js diff --git a/test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/simpleDependency/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/simpleDependency/expectedOutput/output.txt diff --git a/test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/simpleDependency/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/simpleDependency/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/simpleDependency/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/simpleDependency/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/simpleDependency/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/simpleDependency/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/simpleDependency/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/simpleDependency/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/simpleDependency/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/simpleDependency/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/simpleDependency/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/sourceMaps/expectedOutput-6.0/bundle.js b/test/comparison-tests/sourceMaps/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/sourceMaps/expectedOutput-6.0/bundle.js rename to test/comparison-tests/sourceMaps/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/sourceMaps/expectedOutput-6.0/bundle.js.map b/test/comparison-tests/sourceMaps/expectedOutput-transpile/bundle.js.map similarity index 100% rename from test/comparison-tests/sourceMaps/expectedOutput-6.0/bundle.js.map rename to test/comparison-tests/sourceMaps/expectedOutput-transpile/bundle.js.map diff --git a/test/comparison-tests/sourceMaps/expectedOutput-6.0/output.txt b/test/comparison-tests/sourceMaps/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/sourceMaps/expectedOutput-6.0/output.txt rename to test/comparison-tests/sourceMaps/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/sourceMaps/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/sourceMaps/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/sourceMaps/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/sourceMaps/expectedOutput/bundle.js diff --git a/test/comparison-tests/sourceMaps/expectedOutput-transpile-6.0/bundle.js.map b/test/comparison-tests/sourceMaps/expectedOutput/bundle.js.map similarity index 100% rename from test/comparison-tests/sourceMaps/expectedOutput-transpile-6.0/bundle.js.map rename to test/comparison-tests/sourceMaps/expectedOutput/bundle.js.map diff --git a/test/comparison-tests/sourceMaps/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/sourceMaps/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/sourceMaps/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/sourceMaps/expectedOutput/output.txt diff --git a/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile-6.0/bundle.js.map b/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile/bundle.js.map similarity index 100% rename from test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile-6.0/bundle.js.map rename to test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile/bundle.js.map diff --git a/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-6.0/bundle.js b/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-6.0/bundle.js rename to test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput/bundle.js diff --git a/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-6.0/bundle.js.map b/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput/bundle.js.map similarity index 100% rename from test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-6.0/bundle.js.map rename to test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput/bundle.js.map diff --git a/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-6.0/output.txt b/test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput-6.0/output.txt rename to test/comparison-tests/sourceMapsShouldConsiderInputSourceMap/expectedOutput/output.txt diff --git a/test/comparison-tests/stub-new-version.js b/test/comparison-tests/stub-new-version.js deleted file mode 100644 index d01622fae..000000000 --- a/test/comparison-tests/stub-new-version.js +++ /dev/null @@ -1,42 +0,0 @@ -// @ts-check -const fs = require('fs-extra'); -const path = require('path'); -const mkdirp = require('mkdirp'); -const copySync = require('./copySync'); - -// BASH script to delete old test output -// find ./test/comparison-tests -type d -name '*expectedOutput*5.9' -print0 | xargs -0 -I {} /bin/rm -rf "{}" - -// update this manually when a new version comes out -const OLD_VERSION = '5.9'; -const NEW_VERSION = '6.0'; - -fs.readdirSync(__dirname).forEach(function(test) { - const testPath = path.join(__dirname, test); - if (fs.statSync(testPath).isDirectory()) { - if (test === 'testLib') return; - - const expectedOutput = path.join(testPath, `expectedOutput-${OLD_VERSION}`); - const newExpectedOutput = path.join( - testPath, - `expectedOutput-${NEW_VERSION}` - ); - - mkdirp.sync(newExpectedOutput); - copySync(expectedOutput, newExpectedOutput); - - const expectedTranspileOutput = path.join( - testPath, - `expectedOutput-transpile-${OLD_VERSION}` - ); - const newExpectedTranspileOutput = path.join( - testPath, - `expectedOutput-transpile-${NEW_VERSION}` - ); - - if (fs.existsSync(expectedTranspileOutput)) { - mkdirp.sync(newExpectedTranspileOutput); - copySync(expectedTranspileOutput, newExpectedTranspileOutput); - } - } -}); diff --git a/test/comparison-tests/tsconfigInvalid/expectedOutput-6.0/bundle.js b/test/comparison-tests/tsconfigInvalid/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/tsconfigInvalid/expectedOutput-6.0/bundle.js rename to test/comparison-tests/tsconfigInvalid/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/tsconfigInvalid/expectedOutput-6.0/output.txt b/test/comparison-tests/tsconfigInvalid/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/tsconfigInvalid/expectedOutput-6.0/output.txt rename to test/comparison-tests/tsconfigInvalid/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/tsconfigInvalid/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/tsconfigInvalid/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/tsconfigInvalid/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/tsconfigInvalid/expectedOutput/bundle.js diff --git a/test/comparison-tests/tsconfigInvalid/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/tsconfigInvalid/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/tsconfigInvalid/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/tsconfigInvalid/expectedOutput/output.txt diff --git a/test/comparison-tests/tsconfigInvalidFile/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/tsconfigInvalidFile/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/tsconfigInvalidFile/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/tsconfigInvalidFile/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/tsconfigInvalidFile/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/tsconfigInvalidFile/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/tsconfigInvalidFile/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/tsconfigInvalidFile/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/tsconfigInvalidFile/expectedOutput-6.0/bundle.js b/test/comparison-tests/tsconfigInvalidFile/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/tsconfigInvalidFile/expectedOutput-6.0/bundle.js rename to test/comparison-tests/tsconfigInvalidFile/expectedOutput/bundle.js diff --git a/test/comparison-tests/tsconfigInvalidFile/expectedOutput-6.0/output.txt b/test/comparison-tests/tsconfigInvalidFile/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/tsconfigInvalidFile/expectedOutput-6.0/output.txt rename to test/comparison-tests/tsconfigInvalidFile/expectedOutput/output.txt diff --git a/test/comparison-tests/tsconfigSearch/expectedOutput-6.0/bundle.js b/test/comparison-tests/tsconfigSearch/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/tsconfigSearch/expectedOutput-6.0/bundle.js rename to test/comparison-tests/tsconfigSearch/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/tsconfigSearch/expectedOutput-6.0/output.txt b/test/comparison-tests/tsconfigSearch/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/tsconfigSearch/expectedOutput-6.0/output.txt rename to test/comparison-tests/tsconfigSearch/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/tsconfigSearch/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/tsconfigSearch/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/tsconfigSearch/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/tsconfigSearch/expectedOutput/bundle.js diff --git a/test/comparison-tests/tsconfigSearch/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/tsconfigSearch/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/tsconfigSearch/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/tsconfigSearch/expectedOutput/output.txt diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-6.0/bundle.js b/test/comparison-tests/typeSystemWatch/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-6.0/bundle.js rename to test/comparison-tests/typeSystemWatch/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/typeSystemWatch/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/typeSystemWatch/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-6.0/patch0/bundle.js b/test/comparison-tests/typeSystemWatch/expectedOutput-transpile/patch0/bundle.js similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-6.0/patch0/bundle.js rename to test/comparison-tests/typeSystemWatch/expectedOutput-transpile/patch0/bundle.js diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/patch0/output.txt b/test/comparison-tests/typeSystemWatch/expectedOutput-transpile/patch0/output.txt similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/patch0/output.txt rename to test/comparison-tests/typeSystemWatch/expectedOutput-transpile/patch0/output.txt diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-6.0/patch1/bundle.js b/test/comparison-tests/typeSystemWatch/expectedOutput-transpile/patch1/bundle.js similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-6.0/patch1/bundle.js rename to test/comparison-tests/typeSystemWatch/expectedOutput-transpile/patch1/bundle.js diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/patch1/output.txt b/test/comparison-tests/typeSystemWatch/expectedOutput-transpile/patch1/output.txt similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/patch1/output.txt rename to test/comparison-tests/typeSystemWatch/expectedOutput-transpile/patch1/output.txt diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/typeSystemWatch/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/typeSystemWatch/expectedOutput/bundle.js diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-6.0/output.txt b/test/comparison-tests/typeSystemWatch/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-6.0/output.txt rename to test/comparison-tests/typeSystemWatch/expectedOutput/output.txt diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/patch0/bundle.js b/test/comparison-tests/typeSystemWatch/expectedOutput/patch0/bundle.js similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/patch0/bundle.js rename to test/comparison-tests/typeSystemWatch/expectedOutput/patch0/bundle.js diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-6.0/patch0/output.txt b/test/comparison-tests/typeSystemWatch/expectedOutput/patch0/output.txt similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-6.0/patch0/output.txt rename to test/comparison-tests/typeSystemWatch/expectedOutput/patch0/output.txt diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/patch1/bundle.js b/test/comparison-tests/typeSystemWatch/expectedOutput/patch1/bundle.js similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-transpile-6.0/patch1/bundle.js rename to test/comparison-tests/typeSystemWatch/expectedOutput/patch1/bundle.js diff --git a/test/comparison-tests/typeSystemWatch/expectedOutput-6.0/patch1/output.txt b/test/comparison-tests/typeSystemWatch/expectedOutput/patch1/output.txt similarity index 100% rename from test/comparison-tests/typeSystemWatch/expectedOutput-6.0/patch1/output.txt rename to test/comparison-tests/typeSystemWatch/expectedOutput/patch1/output.txt diff --git a/test/comparison-tests/validateLoaderOptionNames/expectedOutput-6.0/bundle.js b/test/comparison-tests/validateLoaderOptionNames/expectedOutput-transpile/bundle.js similarity index 100% rename from test/comparison-tests/validateLoaderOptionNames/expectedOutput-6.0/bundle.js rename to test/comparison-tests/validateLoaderOptionNames/expectedOutput-transpile/bundle.js diff --git a/test/comparison-tests/validateLoaderOptionNames/expectedOutput-6.0/output.txt b/test/comparison-tests/validateLoaderOptionNames/expectedOutput-transpile/output.txt similarity index 100% rename from test/comparison-tests/validateLoaderOptionNames/expectedOutput-6.0/output.txt rename to test/comparison-tests/validateLoaderOptionNames/expectedOutput-transpile/output.txt diff --git a/test/comparison-tests/validateLoaderOptionNames/expectedOutput-transpile-6.0/bundle.js b/test/comparison-tests/validateLoaderOptionNames/expectedOutput/bundle.js similarity index 100% rename from test/comparison-tests/validateLoaderOptionNames/expectedOutput-transpile-6.0/bundle.js rename to test/comparison-tests/validateLoaderOptionNames/expectedOutput/bundle.js diff --git a/test/comparison-tests/validateLoaderOptionNames/expectedOutput-transpile-6.0/output.txt b/test/comparison-tests/validateLoaderOptionNames/expectedOutput/output.txt similarity index 100% rename from test/comparison-tests/validateLoaderOptionNames/expectedOutput-transpile-6.0/output.txt rename to test/comparison-tests/validateLoaderOptionNames/expectedOutput/output.txt