diff --git a/.gitignore b/.gitignore index 7420dcaf70..d4dfeecb24 100644 --- a/.gitignore +++ b/.gitignore @@ -192,3 +192,5 @@ custom-gcl.hash .DS_Store .idea + +!testdata/submoduleAccepted.txt diff --git a/cmd/tsgo/main.go b/cmd/tsgo/main.go index 4ddcd41975..055b7d7311 100644 --- a/cmd/tsgo/main.go +++ b/cmd/tsgo/main.go @@ -237,15 +237,8 @@ func main() { printDiagnostics(ts.SortAndDeduplicateDiagnostics(diagnostics), host, compilerOptions) } - var unsupportedExtensions []string - for _, file := range program.SourceFiles() { - extension := tspath.TryGetExtensionFromPath(file.FileName()) - if extension == tspath.ExtensionTsx || slices.Contains(tspath.SupportedJSExtensionsFlat, extension) { - unsupportedExtensions = core.AppendIfUnique(unsupportedExtensions, extension) - } - } - if len(unsupportedExtensions) != 0 { - fmt.Fprintf(os.Stderr, "Warning: The project contains unsupported file types (%s), which are currently not fully type-checked.\n", strings.Join(unsupportedExtensions, ", ")) + if exts := program.UnsupportedExtensions(); len(exts) != 0 { + fmt.Fprintf(os.Stderr, "Warning: The project contains unsupported file types (%s), which are currently not fully type-checked.\n", strings.Join(exts, ", ")) } if compilerOptions.ListFiles.IsTrue() { diff --git a/internal/compiler/program.go b/internal/compiler/program.go index 91754a537b..1ba6d4f7bb 100644 --- a/internal/compiler/program.go +++ b/internal/compiler/program.go @@ -63,6 +63,9 @@ type Program struct { commonSourceDirectory string commonSourceDirectoryOnce sync.Once + + // List of present unsupported extensions + unsupportedExtensions []string } var extensions = []string{".ts", ".tsx"} @@ -155,6 +158,13 @@ func NewProgram(options ProgramOptions) *Program { p.filesByPath[file.Path()] = file } + for _, file := range p.files { + extension := tspath.TryGetExtensionFromPath(file.FileName()) + if extension == tspath.ExtensionTsx || slices.Contains(tspath.SupportedJSExtensionsFlat, extension) { + p.unsupportedExtensions = append(p.unsupportedExtensions, extension) + } + } + return p } @@ -609,3 +619,9 @@ type FileIncludeReason struct { Kind FileIncludeKind Index int } + +// UnsupportedExtensions returns a list of all present "unsupported" extensions, +// e.g. extensions that are not yet supported by the port. +func (p *Program) UnsupportedExtensions() []string { + return p.unsupportedExtensions +} diff --git a/internal/testrunner/compiler_runner.go b/internal/testrunner/compiler_runner.go index a1811bfeb5..adf0ed482f 100644 --- a/internal/testrunner/compiler_runner.go +++ b/internal/testrunner/compiler_runner.go @@ -337,7 +337,11 @@ func (c *compilerTest) verifyDiagnostics(t *testing.T, suiteName string, isSubmo defer testutil.RecoverAndFail(t, "Panic on creating error baseline for test "+c.filename) files := core.Concatenate(c.tsConfigFiles, core.Concatenate(c.toBeCompiled, c.otherFiles)) - tsbaseline.DoErrorBaseline(t, c.configuredName, files, c.result.Diagnostics, c.result.Options.Pretty.IsTrue(), baseline.Options{Subfolder: suiteName, IsSubmodule: isSubmodule}) + tsbaseline.DoErrorBaseline(t, c.configuredName, files, c.result.Diagnostics, c.result.Options.Pretty.IsTrue(), baseline.Options{ + Subfolder: suiteName, + IsSubmodule: isSubmodule, + IsSubmoduleAccepted: len(c.result.Program.UnsupportedExtensions()) != 0, // TODO(jakebailey): read submoduleAccepted.txt + }) }) } diff --git a/internal/testutil/baseline/baseline.go b/internal/testutil/baseline/baseline.go index a0067950e5..fa28ce4979 100644 --- a/internal/testutil/baseline/baseline.go +++ b/internal/testutil/baseline/baseline.go @@ -6,39 +6,103 @@ import ( "path/filepath" "regexp" "strings" + "sync" "testing" + "github.com/microsoft/typescript-go/internal/core" "github.com/microsoft/typescript-go/internal/repo" + "github.com/microsoft/typescript-go/internal/tspath" "github.com/pkg/diff" + "gotest.tools/v3/assert" ) type Options struct { - Subfolder string - IsSubmodule bool - DiffFixupOld func(string) string + Subfolder string + IsSubmodule bool + IsSubmoduleAccepted bool + DiffFixupOld func(string) string } -const ( - NoContent = "" - submoduleFolder = "submodule" -) +const NoContent = "" func Run(t *testing.T, fileName string, actual string, opts Options) { - if opts.IsSubmodule { - opts.Subfolder = filepath.Join(submoduleFolder, opts.Subfolder) - diff := getBaselineDiff(t, actual, fileName, opts.DiffFixupOld) - diffFileName := fileName + ".diff" - writeComparison(t, diff, diffFileName, false, opts) + origSubfolder := opts.Subfolder + + { + subfolder := opts.Subfolder + if opts.IsSubmodule { + subfolder = filepath.Join("submodule", subfolder) + } + + localPath := filepath.Join(localRoot, subfolder, fileName) + referencePath := filepath.Join(referenceRoot, subfolder, fileName) + + writeComparison(t, actual, localPath, referencePath, false) + } + + if !opts.IsSubmodule { + // Not a submodule, no diffs. + return + } + + submoduleReference := filepath.Join(submoduleReferenceRoot, fileName) + submoduleExpected := readFileOrNoContent(submoduleReference) + + const ( + submoduleFolder = "submodule" + submoduleAcceptedFolder = "submoduleAccepted" + ) + + diffFileName := fileName + ".diff" + isSubmoduleAccepted := opts.IsSubmoduleAccepted || submoduleAcceptedFileNames().Has(origSubfolder+"/"+diffFileName) + + outRoot := core.IfElse(isSubmoduleAccepted, submoduleAcceptedFolder, submoduleFolder) + unusedOutRoot := core.IfElse(isSubmoduleAccepted, submoduleFolder, submoduleAcceptedFolder) + + { + localPath := filepath.Join(localRoot, outRoot, origSubfolder, diffFileName) + referencePath := filepath.Join(referenceRoot, outRoot, origSubfolder, diffFileName) + + diff := getBaselineDiff(t, actual, submoduleExpected, fileName, opts.DiffFixupOld) + writeComparison(t, diff, localPath, referencePath, false) + } + + // Delete the other diff file if it exists + { + localPath := filepath.Join(localRoot, unusedOutRoot, origSubfolder, diffFileName) + referencePath := filepath.Join(referenceRoot, unusedOutRoot, origSubfolder, diffFileName) + writeComparison(t, NoContent, localPath, referencePath, false) } - writeComparison(t, actual, fileName, false, opts) } -func getBaselineDiff(t *testing.T, actual string, fileName string, fixupOld func(string) string) string { - expected := NoContent - refFileName := submoduleReferencePath(fileName, "" /*subfolder*/) - if content, err := os.ReadFile(refFileName); err == nil { - expected = string(content) +var submoduleAcceptedFileNames = sync.OnceValue(func() *core.Set[string] { + var set core.Set[string] + + submoduleAccepted := filepath.Join(repo.TestDataPath, "submoduleAccepted.txt") + if content, err := os.ReadFile(submoduleAccepted); err == nil { + for line := range strings.SplitSeq(string(content), "\n") { + line = strings.TrimSpace(line) + if line == "" || line[0] == '#' { + continue + } + set.Add(line) + } + } else { + panic(fmt.Sprintf("failed to read submodule accepted file: %v", err)) + } + + return &set +}) + +func readFileOrNoContent(fileName string) string { + content, err := os.ReadFile(fileName) + if err != nil { + return NoContent } + return string(content) +} + +func getBaselineDiff(t *testing.T, actual string, expected string, fileName string, fixupOld func(string) string) string { if fixupOld != nil { expected = fixupOld(expected) } @@ -77,84 +141,72 @@ func getBaselineDiff(t *testing.T, actual string, fileName string, fixupOld func var fixUnifiedDiff = regexp.MustCompile(`@@ -\d+,\d+ \+\d+,\d+ @@`) func RunAgainstSubmodule(t *testing.T, fileName string, actual string, opts Options) { - writeComparison(t, actual, fileName, true /*useSubmodule*/, opts) + local := filepath.Join(localRoot, opts.Subfolder, fileName) + reference := filepath.Join(submoduleReferenceRoot, opts.Subfolder, fileName) + writeComparison(t, actual, local, reference, true) } -func writeComparison(t *testing.T, actual string, relativeFileName string, useSubmodule bool, opts Options) { - if actual == "" { +func writeComparison(t *testing.T, actualContent string, local, reference string, comparingAgainstSubmodule bool) { + if actualContent == "" { panic("the generated content was \"\". Return 'baseline.NoContent' if no baselining is required.") } - var ( - localFileName string - referenceFileName string - ) - - if useSubmodule { - localFileName = submoduleLocalPath(relativeFileName, opts.Subfolder) - referenceFileName = submoduleReferencePath(relativeFileName, opts.Subfolder) - } else { - localFileName = localPath(relativeFileName, opts.Subfolder) - referenceFileName = referencePath(relativeFileName, opts.Subfolder) - } - if err := os.MkdirAll(filepath.Dir(localFileName), 0o755); err != nil { - t.Error(fmt.Errorf("failed to create directories for the local baseline file %s: %w", localFileName, err)) + if err := os.MkdirAll(filepath.Dir(local), 0o755); err != nil { + t.Error(fmt.Errorf("failed to create directories for the local baseline file %s: %w", local, err)) return } - if _, err := os.Stat(localFileName); err == nil { - if err := os.Remove(localFileName); err != nil { - t.Error(fmt.Errorf("failed to remove the local baseline file %s: %w", localFileName, err)) + if _, err := os.Stat(local); err == nil { + if err := os.Remove(local); err != nil { + t.Error(fmt.Errorf("failed to remove the local baseline file %s: %w", local, err)) return } } expected := NoContent foundExpected := false - if content, err := os.ReadFile(referenceFileName); err == nil { + if content, err := os.ReadFile(reference); err == nil { expected = string(content) foundExpected = true } - if expected != actual || actual == NoContent && foundExpected { - if actual == NoContent { - if err := os.WriteFile(localFileName+".delete", []byte{}, 0o644); err != nil { - t.Error(fmt.Errorf("failed to write the local baseline file %s: %w", localFileName+".delete", err)) + if expected != actualContent || actualContent == NoContent && foundExpected { + if actualContent == NoContent { + if err := os.WriteFile(local+".delete", []byte{}, 0o644); err != nil { + t.Error(fmt.Errorf("failed to write the local baseline file %s: %w", local+".delete", err)) return } } else { - if err := os.WriteFile(localFileName, []byte(actual), 0o644); err != nil { - t.Error(fmt.Errorf("failed to write the local baseline file %s: %w", localFileName, err)) + if err := os.WriteFile(local, []byte(actualContent), 0o644); err != nil { + t.Error(fmt.Errorf("failed to write the local baseline file %s: %w", local, err)) return } } - if _, err := os.Stat(referenceFileName); err != nil { - if useSubmodule { - t.Errorf("the baseline file %s does not exist in the TypeScript submodule", referenceFileName) + relReference, err := filepath.Rel(repo.RootPath, reference) + assert.NilError(t, err) + relReference = tspath.NormalizeSlashes(relReference) + + relLocal, err := filepath.Rel(repo.RootPath, local) + assert.NilError(t, err) + relLocal = tspath.NormalizeSlashes(relLocal) + + if _, err := os.Stat(reference); err != nil { + if comparingAgainstSubmodule { + t.Errorf("the baseline file %s does not exist in the TypeScript submodule", relReference) } else { - t.Errorf("new baseline created at %s.", localFileName) + t.Errorf("new baseline created at %s.", relLocal) } - } else if useSubmodule { - t.Errorf("the baseline file %s does not match the reference in the TypeScript submodule", relativeFileName) + } else if comparingAgainstSubmodule { + t.Errorf("the baseline file %s does not match the reference in the TypeScript submodule", relReference) } else { - t.Errorf("the baseline file %s has changed. (Run `hereby baseline-accept` if the new baseline is correct.)", relativeFileName) + t.Errorf("the baseline file %s has changed. (Run `hereby baseline-accept` if the new baseline is correct.)", relReference) } } } -func localPath(fileName string, subfolder string) string { - return filepath.Join(repo.TestDataPath, "baselines", "local", subfolder, fileName) -} - -func submoduleLocalPath(fileName string, subfolder string) string { - return filepath.Join(repo.TestDataPath, "baselines", "tmp", subfolder, fileName) -} - -func referencePath(fileName string, subfolder string) string { - return filepath.Join(repo.TestDataPath, "baselines", "reference", subfolder, fileName) -} - -func submoduleReferencePath(fileName string, subfolder string) string { - return filepath.Join(repo.TypeScriptSubmodulePath, "tests", "baselines", "reference", subfolder, fileName) -} +var ( + localRoot = filepath.Join(repo.TestDataPath, "baselines", "local") + referenceRoot = filepath.Join(repo.TestDataPath, "baselines", "reference") + submoduleReferenceRoot = filepath.Join(repo.TypeScriptSubmodulePath, "tests", "baselines", "reference") +) diff --git a/internal/testutil/tsbaseline/type_symbol_baseline.go b/internal/testutil/tsbaseline/type_symbol_baseline.go index 27b5e29d3d..57cb1d421a 100644 --- a/internal/testutil/tsbaseline/type_symbol_baseline.go +++ b/internal/testutil/tsbaseline/type_symbol_baseline.go @@ -71,6 +71,7 @@ func DoTypeAndSymbolBaseline( return sb.String()[:sb.Len()-1] } + typesOpts.IsSubmoduleAccepted = len(program.UnsupportedExtensions()) != 0 // TODO(jakebailey): read submoduleAccepted.txt checkBaselines(t, baselinePath, allFiles, fullWalker, header, typesOpts, false /*isSymbolBaseline*/) }) diff --git a/testdata/baselines/reference/submodule/compiler/allowJscheckJsTypeParameterNoCrash.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/allowJscheckJsTypeParameterNoCrash.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/allowJscheckJsTypeParameterNoCrash.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/allowJscheckJsTypeParameterNoCrash.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/allowJscheckJsTypeParameterNoCrash.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/allowJscheckJsTypeParameterNoCrash.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/allowJscheckJsTypeParameterNoCrash.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/allowJscheckJsTypeParameterNoCrash.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/ambientPropertyDeclarationInJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/ambientPropertyDeclarationInJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/ambientPropertyDeclarationInJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/ambientPropertyDeclarationInJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/ambientRequireFunction(module=commonjs).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/ambientRequireFunction(module=commonjs).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/ambientRequireFunction(module=commonjs).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/ambientRequireFunction(module=commonjs).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/ambientRequireFunction(module=preserve).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/ambientRequireFunction(module=preserve).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/ambientRequireFunction(module=preserve).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/ambientRequireFunction(module=preserve).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/amdLikeInputDeclarationEmit.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/amdLikeInputDeclarationEmit.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/amdLikeInputDeclarationEmit.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/amdLikeInputDeclarationEmit.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/amdLikeInputDeclarationEmit.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/amdLikeInputDeclarationEmit.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/amdLikeInputDeclarationEmit.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/amdLikeInputDeclarationEmit.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsObjectCreatesRestForJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsObjectCreatesRestForJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsObjectCreatesRestForJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsObjectCreatesRestForJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsObjectCreatesRestForJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsObjectCreatesRestForJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsObjectCreatesRestForJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsObjectCreatesRestForJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsPropertyNameInJsMode1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsPropertyNameInJsMode1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsPropertyNameInJsMode1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsPropertyNameInJsMode1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsPropertyNameInJsMode2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsPropertyNameInJsMode2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsPropertyNameInJsMode2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsPropertyNameInJsMode2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsPropertyNameInJsMode2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsPropertyNameInJsMode2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsPropertyNameInJsMode2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsPropertyNameInJsMode2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor1_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor1_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor1_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor1_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor1_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor1_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor1_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor1_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor2_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor2_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor2_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor2_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor3_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor3_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor3_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor3_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor3_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor3_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor3_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor3_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor4_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor4_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor4_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor4_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor4_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor4_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor4_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor4_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor5_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor5_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor5_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor5_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor5_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor5_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor5_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor5_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor6_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor6_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor6_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor6_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor7_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor7_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor7_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor7_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor7_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor7_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInConstructor7_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInConstructor7_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInFunction1_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInFunction1_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInFunction1_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInFunction1_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInFunction1_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInFunction1_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInFunction1_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInFunction1_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod1_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod1_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod1_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod1_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod1_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod1_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod1_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod1_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod2_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod2_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod2_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod2_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod3_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod3_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod3_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod3_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod3_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod3_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod3_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod3_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod4_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod4_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod4_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod4_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod4_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod4_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod4_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod4_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod5_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod5_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod5_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod5_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod5_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod5_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod5_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod5_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod6_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod6_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod6_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod6_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod6_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod6_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod6_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod6_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod7_Js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod7_Js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod7_Js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod7_Js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod7_Js.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod7_Js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsReferenceInMethod7_Js.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsReferenceInMethod7_Js.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsSpreadRestIterables(target=es5).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsSpreadRestIterables(target=es5).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsSpreadRestIterables(target=es5).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsSpreadRestIterables(target=es5).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/argumentsSpreadRestIterables(target=esnext).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/argumentsSpreadRestIterables(target=esnext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/argumentsSpreadRestIterables(target=esnext).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/argumentsSpreadRestIterables(target=esnext).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/arrowFunctionJSDocAnnotation.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/arrowFunctionJSDocAnnotation.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/arrowFunctionJSDocAnnotation.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/arrowFunctionJSDocAnnotation.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/arrowFunctionJSDocAnnotation.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/arrowFunctionJSDocAnnotation.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/arrowFunctionJSDocAnnotation.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/arrowFunctionJSDocAnnotation.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/booleanLiteralsContextuallyTypedFromUnion.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/booleanLiteralsContextuallyTypedFromUnion.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/booleanLiteralsContextuallyTypedFromUnion.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/booleanLiteralsContextuallyTypedFromUnion.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/booleanLiteralsContextuallyTypedFromUnion.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/booleanLiteralsContextuallyTypedFromUnion.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/booleanLiteralsContextuallyTypedFromUnion.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/booleanLiteralsContextuallyTypedFromUnion.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/callsOnComplexSignatures.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/callsOnComplexSignatures.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/callsOnComplexSignatures.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/callsOnComplexSignatures.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/callsOnComplexSignatures.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/callsOnComplexSignatures.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/callsOnComplexSignatures.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/callsOnComplexSignatures.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkDestructuringShorthandAssigment.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkDestructuringShorthandAssigment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkDestructuringShorthandAssigment.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkDestructuringShorthandAssigment.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsFiles2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsFiles2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsFiles4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsFiles4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsFiles5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsFiles5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsFiles7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsFiles7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsFiles7.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsFiles7.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles7.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsFiles_noErrorLocation.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles_noErrorLocation.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsFiles_noErrorLocation.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles_noErrorLocation.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsFiles_skipDiagnostics.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles_skipDiagnostics.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsFiles_skipDiagnostics.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsFiles_skipDiagnostics.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsObjectLiteralHasCheckedKeyof.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsObjectLiteralHasCheckedKeyof.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsObjectLiteralHasCheckedKeyof.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsObjectLiteralHasCheckedKeyof.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsObjectLiteralHasCheckedKeyof.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsObjectLiteralHasCheckedKeyof.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsObjectLiteralHasCheckedKeyof.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsObjectLiteralHasCheckedKeyof.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsTypeDefNoUnusedLocalMarked.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsTypeDefNoUnusedLocalMarked.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsTypeDefNoUnusedLocalMarked.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsTypeDefNoUnusedLocalMarked.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment3.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment3.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment3.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment5.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment5.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment5.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment6.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment6.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment6.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment7.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment7.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment7.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment8.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsdocTypeTagOnExportAssignment8.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsdocTypeTagOnExportAssignment8.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkJsxNotSetError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkJsxNotSetError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkJsxNotSetError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkJsxNotSetError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkSuperCallBeforeThisAccessing9.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkSuperCallBeforeThisAccessing9.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkSuperCallBeforeThisAccessing9.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkSuperCallBeforeThisAccessing9.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/checkerInitializationCrash.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/checkerInitializationCrash.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/checkerInitializationCrash.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/checkerInitializationCrash.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/classExtendingAny.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/classExtendingAny.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/classExtendingAny.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/classExtendingAny.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/classFieldSuperAccessibleJs1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/classFieldSuperAccessibleJs1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/classFieldSuperAccessibleJs1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/classFieldSuperAccessibleJs1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/classFieldSuperAccessibleJs1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/classFieldSuperAccessibleJs1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/classFieldSuperAccessibleJs1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/classFieldSuperAccessibleJs1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/classFieldSuperAccessibleJs2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/classFieldSuperAccessibleJs2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/classFieldSuperAccessibleJs2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/classFieldSuperAccessibleJs2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/classFieldSuperNotAccessibleJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/classFieldSuperNotAccessibleJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/classFieldSuperNotAccessibleJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/classFieldSuperNotAccessibleJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/classFieldSuperNotAccessibleJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/classFieldSuperNotAccessibleJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/classFieldSuperNotAccessibleJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/classFieldSuperNotAccessibleJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=auto).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=auto).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=auto).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=auto).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=force).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=force).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=force).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=force).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=legacy).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=legacy).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=legacy).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=commonjs,moduledetection=legacy).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=auto).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=auto).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=auto).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=auto).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=force).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=force).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=force).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=force).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=legacy).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=legacy).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=legacy).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=preserve,module=system,moduledetection=legacy).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=auto).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=force).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=commonjs,moduledetection=legacy).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=auto).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=force).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react,module=system,moduledetection=legacy).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=auto).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=force).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=commonjs,moduledetection=legacy).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=auto).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=force).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsx,module=system,moduledetection=legacy).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=auto).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=force).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=commonjs,moduledetection=legacy).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=auto).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=force).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commentsOnJSXExpressionsArePreserved(jsx=react-jsxdev,module=system,moduledetection=legacy).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commonJsExportTypeDeclarationError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commonJsExportTypeDeclarationError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commonJsExportTypeDeclarationError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commonJsExportTypeDeclarationError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commonJsExportTypeDeclarationError.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commonJsExportTypeDeclarationError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commonJsExportTypeDeclarationError.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commonJsExportTypeDeclarationError.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commonJsIsolatedModules.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commonJsIsolatedModules.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commonJsIsolatedModules.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commonJsIsolatedModules.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commonJsIsolatedModules.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commonJsIsolatedModules.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commonJsIsolatedModules.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commonJsIsolatedModules.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commonJsUnusedLocals.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commonJsUnusedLocals.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commonJsUnusedLocals.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commonJsUnusedLocals.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commonJsUnusedLocals.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commonJsUnusedLocals.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commonJsUnusedLocals.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commonJsUnusedLocals.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/commonjsAccessExports.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commonjsAccessExports.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commonjsAccessExports.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commonjsAccessExports.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/commonjsAccessExports.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/commonjsAccessExports.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/commonjsAccessExports.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/commonjsAccessExports.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/conflictMarkerTrivia3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/conflictMarkerTrivia3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/conflictMarkerTrivia3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/conflictMarkerTrivia3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/constructorPropertyJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/constructorPropertyJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/constructorPropertyJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/constructorPropertyJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/contextualTypingOfOptionalMembers.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contextualTypingOfOptionalMembers.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contextualTypingOfOptionalMembers.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contextualTypingOfOptionalMembers.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/contextuallyTypeArgumentsKeyword.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypeArgumentsKeyword.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contextuallyTypeArgumentsKeyword.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypeArgumentsKeyword.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/contextuallyTypedJsxAttribute.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedJsxAttribute.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contextuallyTypedJsxAttribute.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedJsxAttribute.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/contextuallyTypedJsxAttribute2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedJsxAttribute2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contextuallyTypedJsxAttribute2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedJsxAttribute2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/contextuallyTypedJsxAttribute2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedJsxAttribute2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contextuallyTypedJsxAttribute2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedJsxAttribute2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/contextuallyTypedJsxChildren.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedJsxChildren.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contextuallyTypedJsxChildren.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedJsxChildren.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/contextuallyTypedJsxChildren.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedJsxChildren.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contextuallyTypedJsxChildren.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedJsxChildren.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/contextuallyTypedParametersOptionalInJSDoc.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedParametersOptionalInJSDoc.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contextuallyTypedParametersOptionalInJSDoc.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedParametersOptionalInJSDoc.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/contextuallyTypedParametersOptionalInJSDoc.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedParametersOptionalInJSDoc.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contextuallyTypedParametersOptionalInJSDoc.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contextuallyTypedParametersOptionalInJSDoc.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/contravariantOnlyInferenceFromAnnotatedFunctionJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contravariantOnlyInferenceFromAnnotatedFunctionJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contravariantOnlyInferenceFromAnnotatedFunctionJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contravariantOnlyInferenceFromAnnotatedFunctionJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/contravariantOnlyInferenceFromAnnotatedFunctionJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contravariantOnlyInferenceFromAnnotatedFunctionJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contravariantOnlyInferenceFromAnnotatedFunctionJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contravariantOnlyInferenceFromAnnotatedFunctionJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameterJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/controlFlowInstanceof.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/controlFlowInstanceof.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/controlFlowInstanceof.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/controlFlowInstanceof.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/controlFlowInstanceof.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/controlFlowInstanceof.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/controlFlowInstanceof.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/controlFlowInstanceof.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/controlFlowJavascript.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/controlFlowJavascript.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/controlFlowJavascript.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/controlFlowJavascript.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitCastReusesTypeNode4(strictnullchecks=false).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitCastReusesTypeNode4(strictnullchecks=false).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitCastReusesTypeNode4(strictnullchecks=false).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitCastReusesTypeNode4(strictnullchecks=false).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitCastReusesTypeNode4(strictnullchecks=true).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitCastReusesTypeNode4(strictnullchecks=true).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitCastReusesTypeNode4(strictnullchecks=true).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitCastReusesTypeNode4(strictnullchecks=true).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitClassAccessorsJs1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitClassAccessorsJs1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitClassAccessorsJs1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitClassAccessorsJs1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitClassSetAccessorParamNameInJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitClassSetAccessorParamNameInJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitClassSetAccessorParamNameInJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitClassSetAccessorParamNameInJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitClassSetAccessorParamNameInJs2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitClassSetAccessorParamNameInJs2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitClassSetAccessorParamNameInJs2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitClassSetAccessorParamNameInJs2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitClassSetAccessorParamNameInJs3.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitClassSetAccessorParamNameInJs3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitClassSetAccessorParamNameInJs3.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitClassSetAccessorParamNameInJs3.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitLateBoundJSAssignments.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitLateBoundJSAssignments.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitLateBoundJSAssignments.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitLateBoundJSAssignments.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitMethodDeclaration.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitMethodDeclaration.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitMethodDeclaration.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitMethodDeclaration.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitObjectLiteralAccessorsJs1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitObjectLiteralAccessorsJs1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitObjectLiteralAccessorsJs1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitObjectLiteralAccessorsJs1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitObjectLiteralAccessorsJs1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitObjectLiteralAccessorsJs1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitObjectLiteralAccessorsJs1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitObjectLiteralAccessorsJs1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/declarationEmitRecursiveConditionalAliasPreserved.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitRecursiveConditionalAliasPreserved.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/declarationEmitRecursiveConditionalAliasPreserved.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/declarationEmitRecursiveConditionalAliasPreserved.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/decoratorInJsFile.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/decoratorInJsFile.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/decoratorInJsFile.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/decoratorInJsFile.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/decoratorInJsFile1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/decoratorInJsFile1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/decoratorInJsFile1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/decoratorInJsFile1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/defaultPropsEmptyCurlyBecomesAnyForJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/defaultPropsEmptyCurlyBecomesAnyForJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/defaultPropsEmptyCurlyBecomesAnyForJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/defaultPropsEmptyCurlyBecomesAnyForJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/defaultPropsEmptyCurlyBecomesAnyForJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/defaultPropsEmptyCurlyBecomesAnyForJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/defaultPropsEmptyCurlyBecomesAnyForJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/defaultPropsEmptyCurlyBecomesAnyForJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/discriminatedUnionJsxElement.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/discriminatedUnionJsxElement.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/discriminatedUnionJsxElement.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/discriminatedUnionJsxElement.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/doubleUnderscoreExportStarConflict.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/doubleUnderscoreExportStarConflict.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/doubleUnderscoreExportStarConflict.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/doubleUnderscoreExportStarConflict.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/doubleUnderscoreExportStarConflict.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/doubleUnderscoreExportStarConflict.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/doubleUnderscoreExportStarConflict.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/doubleUnderscoreExportStarConflict.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/doubleUnderscoreReactNamespace.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/doubleUnderscoreReactNamespace.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/doubleUnderscoreReactNamespace.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/doubleUnderscoreReactNamespace.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/dynamicRequire.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/dynamicRequire.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/dynamicRequire.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/dynamicRequire.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/elidedJSImport1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/elidedJSImport1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/elidedJSImport1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/elidedJSImport1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/elidedJSImport2(module=commonjs).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport2(module=commonjs).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/elidedJSImport2(module=commonjs).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport2(module=commonjs).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/elidedJSImport2(module=commonjs).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport2(module=commonjs).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/elidedJSImport2(module=commonjs).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport2(module=commonjs).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/elidedJSImport2(module=es2022).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport2(module=es2022).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/elidedJSImport2(module=es2022).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport2(module=es2022).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/elidedJSImport2(module=es2022).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport2(module=es2022).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/elidedJSImport2(module=es2022).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/elidedJSImport2(module=es2022).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/ensureNoCrashExportAssignmentDefineProperrtyPotentialMerge.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/errorSpanForUnclosedJsxTag.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/errorSpanForUnclosedJsxTag.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/errorSpanForUnclosedJsxTag.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/errorSpanForUnclosedJsxTag.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/es6ImportWithJsDocTags.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/es6ImportWithJsDocTags.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/es6ImportWithJsDocTags.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/es6ImportWithJsDocTags.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/excessiveStackDepthFlatArray.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/excessiveStackDepthFlatArray.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/excessiveStackDepthFlatArray.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/excessiveStackDepthFlatArray.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/excessiveStackDepthFlatArray.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/excessiveStackDepthFlatArray.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/excessiveStackDepthFlatArray.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/excessiveStackDepthFlatArray.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/expandoFunctionContextualTypesJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/expandoFunctionContextualTypesJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/expandoFunctionContextualTypesJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/expandoFunctionContextualTypesJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/expandoFunctionContextualTypesJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/expandoFunctionContextualTypesJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/expandoFunctionContextualTypesJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/expandoFunctionContextualTypesJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/expandoFunctionSymbolPropertyJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/expandoFunctionSymbolPropertyJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/expandoFunctionSymbolPropertyJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/expandoFunctionSymbolPropertyJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/exportDefaultMarksIdentifierAsUsed.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/exportDefaultMarksIdentifierAsUsed.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/exportDefaultMarksIdentifierAsUsed.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/exportDefaultMarksIdentifierAsUsed.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/exportDefaultMarksIdentifierAsUsed.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/exportDefaultMarksIdentifierAsUsed.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/exportDefaultMarksIdentifierAsUsed.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/exportDefaultMarksIdentifierAsUsed.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/exportDefaultWithJSDoc1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/exportDefaultWithJSDoc1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/exportDefaultWithJSDoc1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/exportDefaultWithJSDoc1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/exportDefaultWithJSDoc2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/exportDefaultWithJSDoc2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/exportDefaultWithJSDoc2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/exportDefaultWithJSDoc2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/extendedUnicodePlaneIdentifiersJSDoc.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/extendedUnicodePlaneIdentifiersJSDoc.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/extendedUnicodePlaneIdentifiersJSDoc.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/extendedUnicodePlaneIdentifiersJSDoc.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/filesEmittingIntoSameOutput.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/filesEmittingIntoSameOutput.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/filesEmittingIntoSameOutput.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/filesEmittingIntoSameOutput.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/fillInMissingTypeArgsOnJSConstructCalls.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/fillInMissingTypeArgsOnJSConstructCalls.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/fillInMissingTypeArgsOnJSConstructCalls.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/fillInMissingTypeArgsOnJSConstructCalls.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/fillInMissingTypeArgsOnJSConstructCalls.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/fillInMissingTypeArgsOnJSConstructCalls.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/fillInMissingTypeArgsOnJSConstructCalls.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/fillInMissingTypeArgsOnJSConstructCalls.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/functionExpressionNames.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/functionExpressionNames.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/functionExpressionNames.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/functionExpressionNames.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/functionExpressionNames.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/functionExpressionNames.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/functionExpressionNames.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/functionExpressionNames.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/genericDefaultsJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/genericDefaultsJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/genericDefaultsJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/genericDefaultsJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/genericDefaultsJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/genericDefaultsJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/genericDefaultsJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/genericDefaultsJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/genericInferenceDefaultTypeParameterJsxReact.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/genericInferenceDefaultTypeParameterJsxReact.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/genericInferenceDefaultTypeParameterJsxReact.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/genericInferenceDefaultTypeParameterJsxReact.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/genericInferenceDefaultTypeParameterJsxReact.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/genericInferenceDefaultTypeParameterJsxReact.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/genericInferenceDefaultTypeParameterJsxReact.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/genericInferenceDefaultTypeParameterJsxReact.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/ignoredJsxAttributes.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/ignoredJsxAttributes.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/ignoredJsxAttributes.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/ignoredJsxAttributes.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/ignoredJsxAttributes.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/ignoredJsxAttributes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/ignoredJsxAttributes.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/ignoredJsxAttributes.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit1(module=amd).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit1(module=amd).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit1(module=amd).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit1(module=amd).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit1(module=commonjs).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit1(module=commonjs).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit1(module=commonjs).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit1(module=commonjs).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit1(module=system).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit1(module=system).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit1(module=system).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit1(module=system).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit1(module=umd).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit1(module=umd).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit1(module=umd).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit1(module=umd).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit2(module=commonjs).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit2(module=commonjs).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit2(module=commonjs).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit2(module=commonjs).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit3(module=commonjs).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit3(module=commonjs).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit3(module=commonjs).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit3(module=commonjs).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit4(module=commonjs).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit4(module=commonjs).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/impliedNodeFormatEmit4(module=commonjs).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/impliedNodeFormatEmit4(module=commonjs).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/importDeclFromTypeNodeInJsSource.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importDeclFromTypeNodeInJsSource.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importDeclFromTypeNodeInJsSource.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importDeclFromTypeNodeInJsSource.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=false).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importHelpersCommonJSJavaScript(verbatimmodulesyntax=true).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/importHelpersInTsx.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importHelpersInTsx.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importHelpersInTsx.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importHelpersInTsx.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/importNonExportedMember12.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importNonExportedMember12.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importNonExportedMember12.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importNonExportedMember12.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/importNonExportedMember12.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importNonExportedMember12.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importNonExportedMember12.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importNonExportedMember12.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/importNonExportedMember8.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importNonExportedMember8.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importNonExportedMember8.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importNonExportedMember8.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/importNonExportedMember9.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importNonExportedMember9.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importNonExportedMember9.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importNonExportedMember9.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/importTypeResolutionJSDocEOF.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/importTypeResolutionJSDocEOF.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/importTypeResolutionJSDocEOF.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/importTypeResolutionJSDocEOF.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/inexistentPropertyInsideToStringType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/inexistentPropertyInsideToStringType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/inexistentPropertyInsideToStringType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/inexistentPropertyInsideToStringType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/inexistentPropertyInsideToStringType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/inexistentPropertyInsideToStringType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/inexistentPropertyInsideToStringType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/inexistentPropertyInsideToStringType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/isolatedDeclarationsAllowJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/isolatedDeclarationsAllowJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/isolatedDeclarationsAllowJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/isolatedDeclarationsAllowJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/javascriptCommonjsModule.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/javascriptCommonjsModule.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/javascriptCommonjsModule.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/javascriptCommonjsModule.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/javascriptCommonjsModule.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/javascriptCommonjsModule.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/javascriptCommonjsModule.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/javascriptCommonjsModule.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/javascriptDefinePropertyPrototypeNonConstructor.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/javascriptDefinePropertyPrototypeNonConstructor.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/javascriptDefinePropertyPrototypeNonConstructor.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/javascriptDefinePropertyPrototypeNonConstructor.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/javascriptImportDefaultBadExport.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/javascriptImportDefaultBadExport.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/javascriptImportDefaultBadExport.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/javascriptImportDefaultBadExport.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/javascriptImportDefaultBadExport.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/javascriptImportDefaultBadExport.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/javascriptImportDefaultBadExport.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/javascriptImportDefaultBadExport.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/javascriptThisAssignmentInStaticBlock.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/javascriptThisAssignmentInStaticBlock.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/javascriptThisAssignmentInStaticBlock.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/javascriptThisAssignmentInStaticBlock.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/javascriptThisAssignmentInStaticBlock.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/javascriptThisAssignmentInStaticBlock.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/javascriptThisAssignmentInStaticBlock.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/javascriptThisAssignmentInStaticBlock.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationEmitDoesNotRenameImport.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitDoesNotRenameImport.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationEmitDoesNotRenameImport.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitDoesNotRenameImport.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationEmitDoesNotRenameImport.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitDoesNotRenameImport.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationEmitDoesNotRenameImport.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitDoesNotRenameImport.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportAssignedArray.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportAssignedArray.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportAssignedArray.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportAssignedArray.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportAssignedArray.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportAssignedArray.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportAssignedArray.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportAssignedArray.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportAssignedFunctionWithExtraTypedefsMembers.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportedClassWithExtends.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportedClassWithExtends.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportedClassWithExtends.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportedClassWithExtends.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportedClassWithExtends.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportedClassWithExtends.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationEmitExportedClassWithExtends.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationEmitExportedClassWithExtends.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationsGlobalFileConstFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationsGlobalFileConstFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationsGlobalFileConstFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationsGlobalFileConstFunction.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationsGlobalFileConstFunctionNamed.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationsGlobalFileConstFunctionNamed.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationsGlobalFileConstFunctionNamed.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationsGlobalFileConstFunctionNamed.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationsGlobalFileConstFunctionNamed.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationsGlobalFileConstFunctionNamed.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationsGlobalFileConstFunctionNamed.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationsGlobalFileConstFunctionNamed.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationsInheritedTypes.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationsInheritedTypes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationsInheritedTypes.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationsInheritedTypes.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDeclarationsWithDefaultAsNamespaceLikeMerge.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationsWithDefaultAsNamespaceLikeMerge.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDeclarationsWithDefaultAsNamespaceLikeMerge.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDeclarationsWithDefaultAsNamespaceLikeMerge.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsDocDeclarationEmitDoesNotUseNodeModulesPathWithoutError.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsElementAccessNoContextualTypeCrash.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsElementAccessNoContextualTypeCrash.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsElementAccessNoContextualTypeCrash.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsElementAccessNoContextualTypeCrash.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsElementAccessNoContextualTypeCrash.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsElementAccessNoContextualTypeCrash.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsElementAccessNoContextualTypeCrash.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsElementAccessNoContextualTypeCrash.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsEnumCrossFileExport.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsEnumCrossFileExport.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsEnumCrossFileExport.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsEnumCrossFileExport.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsEnumCrossFileExport.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsEnumCrossFileExport.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsEnumCrossFileExport.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsEnumCrossFileExport.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsEnumTagOnObjectFrozen.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsEnumTagOnObjectFrozen.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsEnumTagOnObjectFrozen.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsEnumTagOnObjectFrozen.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsEnumTagOnObjectFrozen.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsEnumTagOnObjectFrozen.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsEnumTagOnObjectFrozen.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsEnumTagOnObjectFrozen.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExpandoObjectDefineProperty.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExpandoObjectDefineProperty.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExpandoObjectDefineProperty.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExpandoObjectDefineProperty.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExpandoObjectDefineProperty.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExpandoObjectDefineProperty.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExpandoObjectDefineProperty.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExpandoObjectDefineProperty.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExportAssignmentNonMutableLocation.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExportAssignmentNonMutableLocation.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExportAssignmentNonMutableLocation.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExportAssignmentNonMutableLocation.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExportAssignmentNonMutableLocation.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExportAssignmentNonMutableLocation.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExportAssignmentNonMutableLocation.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExportAssignmentNonMutableLocation.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation3.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExportMemberMergedWithModuleAugmentation3.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExportMemberMergedWithModuleAugmentation3.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExtendsImplicitAny.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExtendsImplicitAny.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExtendsImplicitAny.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExtendsImplicitAny.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsExtendsImplicitAny.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsExtendsImplicitAny.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsExtendsImplicitAny.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsExtendsImplicitAny.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileAlternativeUseOfOverloadTag.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileAlternativeUseOfOverloadTag.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileAlternativeUseOfOverloadTag.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileAlternativeUseOfOverloadTag.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileClassPropertyInitalizationInObjectLiteral.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyInitalizationInObjectLiteral.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileClassPropertyInitalizationInObjectLiteral.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyInitalizationInObjectLiteral.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileClassPropertyInitalizationInObjectLiteral.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyInitalizationInObjectLiteral.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileClassPropertyInitalizationInObjectLiteral.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyInitalizationInObjectLiteral.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType3.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileClassPropertyType3.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassPropertyType3.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileClassSelfReferencedProperty.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassSelfReferencedProperty.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileClassSelfReferencedProperty.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassSelfReferencedProperty.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileClassSelfReferencedProperty.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassSelfReferencedProperty.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileClassSelfReferencedProperty.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileClassSelfReferencedProperty.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationAbstractModifier.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationAbstractModifier.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationAbstractModifier.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationAbstractModifier.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationAmbientVarDeclarationSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationAmbientVarDeclarationSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationAmbientVarDeclarationSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationAmbientVarDeclarationSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationBindDeepExportsAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationBindDeepExportsAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationBindDeepExportsAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationBindDeepExportsAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationBindDeepExportsAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationBindDeepExportsAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationBindDeepExportsAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationBindDeepExportsAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationBindMultipleDefaultExports.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationBindMultipleDefaultExports.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationBindMultipleDefaultExports.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationBindMultipleDefaultExports.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationBindMultipleDefaultExports.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationBindMultipleDefaultExports.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationBindMultipleDefaultExports.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationBindMultipleDefaultExports.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationBindStrictModeErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationBindStrictModeErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationBindStrictModeErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationBindStrictModeErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationConstructorOverloadSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationConstructorOverloadSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationConstructorOverloadSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationConstructorOverloadSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationDecoratorSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationDecoratorSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationDecoratorSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationDecoratorSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationDecoratorSyntax.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationDecoratorSyntax.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationDecoratorSyntax.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationDecoratorSyntax.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationDuplicateFunctionImplementation.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationDuplicateFunctionImplementation.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationDuplicateFunctionImplementation.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationDuplicateFunctionImplementation.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationDuplicateFunctionImplementationFileOrderReversed.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationDuplicateFunctionImplementationFileOrderReversed.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationDuplicateFunctionImplementationFileOrderReversed.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationDuplicateFunctionImplementationFileOrderReversed.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationDuplicateVariable.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationDuplicateVariable.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationDuplicateVariable.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationDuplicateVariable.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationEmitBlockedCorrectly.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationEmitBlockedCorrectly.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationEmitBlockedCorrectly.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationEmitBlockedCorrectly.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationEnumSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationEnumSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationEnumSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationEnumSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithNoOut.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithNoOut.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithNoOut.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationErrorOnDeclarationsWithJsFileReferenceWithNoOut.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationExportAssignmentSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationExportAssignmentSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationExportAssignmentSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationExportAssignmentSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationExternalPackageError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationExternalPackageError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationExternalPackageError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationExternalPackageError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationExternalPackageError.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationExternalPackageError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationExternalPackageError.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationExternalPackageError.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationFunctionOverloadSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationFunctionOverloadSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationFunctionOverloadSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationFunctionOverloadSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationHeritageClauseSyntaxOfClass.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationHeritageClauseSyntaxOfClass.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationHeritageClauseSyntaxOfClass.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationHeritageClauseSyntaxOfClass.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationImportEqualsSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationImportEqualsSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationImportEqualsSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationImportEqualsSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationInterfaceSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationInterfaceSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationInterfaceSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationInterfaceSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationInterfaceSyntax.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationInterfaceSyntax.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationInterfaceSyntax.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationInterfaceSyntax.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationLetDeclarationOrder.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationLetDeclarationOrder.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationLetDeclarationOrder.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationLetDeclarationOrder.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationMethodOverloadSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationMethodOverloadSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationMethodOverloadSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationMethodOverloadSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationModuleSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationModuleSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationModuleSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationModuleSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationModuleSyntax.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationModuleSyntax.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationModuleSyntax.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationModuleSyntax.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithNoOut.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithNoOut.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithNoOut.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationNoErrorWithoutDeclarationsWithJsFileReferenceWithNoOut.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationNonNullAssertion.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationNonNullAssertion.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationNonNullAssertion.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationNonNullAssertion.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationOptionalClassElementSyntaxOfClass.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationOptionalClassElementSyntaxOfClass.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationOptionalClassElementSyntaxOfClass.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationOptionalClassElementSyntaxOfClass.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationOptionalParameter.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationOptionalParameter.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationOptionalParameter.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationOptionalParameter.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationPublicMethodSyntaxOfClass.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationPublicMethodSyntaxOfClass.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationPublicMethodSyntaxOfClass.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationPublicMethodSyntaxOfClass.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationPublicParameterModifier.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationPublicParameterModifier.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationPublicParameterModifier.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationPublicParameterModifier.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationRestParamJsDocFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationRestParamJsDocFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationRestParamJsDocFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationRestParamJsDocFunction.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationReturnTypeSyntaxOfFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationReturnTypeSyntaxOfFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationReturnTypeSyntaxOfFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationReturnTypeSyntaxOfFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationSyntaxError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationSyntaxError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationSyntaxError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationSyntaxError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationSyntaxError.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationSyntaxError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationSyntaxError.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationSyntaxError.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeAliasSyntax.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeAliasSyntax.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeAliasSyntax.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeAliasSyntax.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeArgumentSyntaxOfCall.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeArgumentSyntaxOfCall.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeArgumentSyntaxOfCall.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeArgumentSyntaxOfCall.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeAssertions.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeAssertions.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeAssertions.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeAssertions.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeOfParameter.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeOfParameter.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeOfParameter.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeOfParameter.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfClass.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfClass.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfClass.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfClass.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfClass.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfClass.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfClass.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfClass.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfClassExpression.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfClassExpression.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfClassExpression.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfClassExpression.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfClassExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfClassExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfClassExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfClassExpression.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeParameterSyntaxOfFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeParameterSyntaxOfFunction.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeSyntaxOfVar.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeSyntaxOfVar.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationTypeSyntaxOfVar.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationTypeSyntaxOfVar.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationWithJsEmitPathSameAsInput.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithJsEmitPathSameAsInput.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationWithJsEmitPathSameAsInput.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithJsEmitPathSameAsInput.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationWithMapFileAsJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithMapFileAsJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationWithMapFileAsJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithMapFileAsJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationWithMapFileAsJsWithInlineSourceMap.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithMapFileAsJsWithInlineSourceMap.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationWithMapFileAsJsWithInlineSourceMap.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithMapFileAsJsWithInlineSourceMap.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationWithMapFileAsJsWithOutDir.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithMapFileAsJsWithOutDir.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationWithMapFileAsJsWithOutDir.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithMapFileAsJsWithOutDir.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationWithOutFileNameSameAsInputJsFile.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithOutFileNameSameAsInputJsFile.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationWithOutFileNameSameAsInputJsFile.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithOutFileNameSameAsInputJsFile.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileCompilationWithoutOut.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithoutOut.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileCompilationWithoutOut.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileCompilationWithoutOut.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileESModuleWithEnumTag.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileESModuleWithEnumTag.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileESModuleWithEnumTag.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileESModuleWithEnumTag.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileFunctionOverloads.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileFunctionOverloads.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileFunctionOverloads.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileFunctionOverloads.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileFunctionOverloads2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileFunctionOverloads2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileFunctionOverloads2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileFunctionOverloads2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileFunctionParametersAsOptional.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileFunctionParametersAsOptional.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileFunctionParametersAsOptional.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileFunctionParametersAsOptional.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileImportPreservedWhenUsed.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileImportPreservedWhenUsed.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileImportPreservedWhenUsed.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileImportPreservedWhenUsed.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileImportPreservedWhenUsed.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileImportPreservedWhenUsed.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileImportPreservedWhenUsed.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileImportPreservedWhenUsed.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads3.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads3.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads3.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads4.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads4.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads4.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads5.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFileMethodOverloads5.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFileMethodOverloads5.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFunctionWithPrototypeNoErrorTruncationNoCrash.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFunctionWithPrototypeNoErrorTruncationNoCrash.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFunctionWithPrototypeNoErrorTruncationNoCrash.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFunctionWithPrototypeNoErrorTruncationNoCrash.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsFunctionWithPrototypeNoErrorTruncationNoCrash.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsFunctionWithPrototypeNoErrorTruncationNoCrash.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsFunctionWithPrototypeNoErrorTruncationNoCrash.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsFunctionWithPrototypeNoErrorTruncationNoCrash.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsNoImplicitAnyNoCascadingReferenceErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsNoImplicitAnyNoCascadingReferenceErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsNoImplicitAnyNoCascadingReferenceErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsNoImplicitAnyNoCascadingReferenceErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsNoImplicitAnyNoCascadingReferenceErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsNoImplicitAnyNoCascadingReferenceErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsNoImplicitAnyNoCascadingReferenceErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsNoImplicitAnyNoCascadingReferenceErrors.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsPropertyAssignedAfterMethodDeclaration.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsPropertyAssignedAfterMethodDeclaration.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsPropertyAssignedAfterMethodDeclaration.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsPropertyAssignedAfterMethodDeclaration.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsPropertyAssignedAfterMethodDeclaration_nonError.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsPropertyAssignedAfterMethodDeclaration_nonError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsPropertyAssignedAfterMethodDeclaration_nonError.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsPropertyAssignedAfterMethodDeclaration_nonError.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsSelfReferencingArgumentsFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsSelfReferencingArgumentsFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsSelfReferencingArgumentsFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsSelfReferencingArgumentsFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsSelfReferencingArgumentsFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsSelfReferencingArgumentsFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsSelfReferencingArgumentsFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsSelfReferencingArgumentsFunction.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocAccessEnumType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocAccessEnumType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocAccessEnumType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocAccessEnumType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocArrayObjectPromiseImplicitAny.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocArrayObjectPromiseImplicitAny.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocArrayObjectPromiseImplicitAny.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocArrayObjectPromiseImplicitAny.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocArrayObjectPromiseNoImplicitAny.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocArrayObjectPromiseNoImplicitAny.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocArrayObjectPromiseNoImplicitAny.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocArrayObjectPromiseNoImplicitAny.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocArrayObjectPromiseNoImplicitAny.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocArrayObjectPromiseNoImplicitAny.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocArrayObjectPromiseNoImplicitAny.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocArrayObjectPromiseNoImplicitAny.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocBracelessTypeTag1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocBracelessTypeTag1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocBracelessTypeTag1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocBracelessTypeTag1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocBracelessTypeTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocBracelessTypeTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocBracelessTypeTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocBracelessTypeTag1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocCallbackAndType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocCallbackAndType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocCallbackAndType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocCallbackAndType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocCallbackAndType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocCallbackAndType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocCallbackAndType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocCallbackAndType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocClassMissingTypeArguments.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocClassMissingTypeArguments.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocClassMissingTypeArguments.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocClassMissingTypeArguments.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocClassMissingTypeArguments.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocClassMissingTypeArguments.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocClassMissingTypeArguments.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocClassMissingTypeArguments.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocFunctionClassPropertiesDeclaration.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocFunctionClassPropertiesDeclaration.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocFunctionClassPropertiesDeclaration.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocFunctionClassPropertiesDeclaration.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocFunctionClassPropertiesDeclaration.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocFunctionClassPropertiesDeclaration.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocFunctionClassPropertiesDeclaration.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocFunctionClassPropertiesDeclaration.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocFunctionTypeFalsePositive.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocFunctionTypeFalsePositive.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocFunctionTypeFalsePositive.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocFunctionTypeFalsePositive.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocFunctionTypeFalsePositive.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocFunctionTypeFalsePositive.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocFunctionTypeFalsePositive.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocFunctionTypeFalsePositive.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocIllegalTags.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocIllegalTags.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocIllegalTags.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocIllegalTags.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocImportTypeNodeNamespace.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocImportTypeNodeNamespace.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocImportTypeNodeNamespace.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocImportTypeNodeNamespace.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocImportTypeNodeNamespace.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocImportTypeNodeNamespace.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocImportTypeNodeNamespace.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocImportTypeNodeNamespace.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocImportTypeResolution.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocImportTypeResolution.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocImportTypeResolution.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocImportTypeResolution.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocParamTagInvalid.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocParamTagInvalid.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocParamTagInvalid.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocParamTagInvalid.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocParamTagOnPropertyInitializer.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocParamTagOnPropertyInitializer.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocParamTagOnPropertyInitializer.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocParamTagOnPropertyInitializer.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocParamTagOnPropertyInitializer.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocParamTagOnPropertyInitializer.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocParamTagOnPropertyInitializer.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocParamTagOnPropertyInitializer.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocParameterParsingInfiniteLoop.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocParameterParsingInfiniteLoop.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocParameterParsingInfiniteLoop.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocParameterParsingInfiniteLoop.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocParameterParsingInfiniteLoop.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocParameterParsingInfiniteLoop.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocParameterParsingInfiniteLoop.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocParameterParsingInfiniteLoop.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocPropertyTagInvalid.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocPropertyTagInvalid.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocPropertyTagInvalid.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocPropertyTagInvalid.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocPropertyTagInvalid.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocPropertyTagInvalid.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocPropertyTagInvalid.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocPropertyTagInvalid.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocReferenceGlobalTypeInCommonJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocReferenceGlobalTypeInCommonJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocReferenceGlobalTypeInCommonJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocReferenceGlobalTypeInCommonJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocReferenceGlobalTypeInCommonJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocReferenceGlobalTypeInCommonJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocReferenceGlobalTypeInCommonJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocReferenceGlobalTypeInCommonJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocResolveNameFailureInTypedef.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocResolveNameFailureInTypedef.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocResolveNameFailureInTypedef.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocResolveNameFailureInTypedef.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocResolveNameFailureInTypedef.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocResolveNameFailureInTypedef.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocResolveNameFailureInTypedef.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocResolveNameFailureInTypedef.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocRestParameter.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocRestParameter.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocRestParameter.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocRestParameter.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocRestParameter.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocRestParameter.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocRestParameter.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocRestParameter.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocRestParameter_es6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocRestParameter_es6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocRestParameter_es6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocRestParameter_es6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocRestParameter_es6.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocRestParameter_es6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocRestParameter_es6.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocRestParameter_es6.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocTypeCast.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypeCast.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocTypeCast.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypeCast.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocTypeCast.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypeCast.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocTypeCast.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypeCast.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocTypeGenericInstantiationAttempt.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypeGenericInstantiationAttempt.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocTypeGenericInstantiationAttempt.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypeGenericInstantiationAttempt.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocTypeNongenericInstantiationAttempt.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypeNongenericInstantiationAttempt.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocTypeNongenericInstantiationAttempt.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypeNongenericInstantiationAttempt.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocTypeNongenericInstantiationAttempt.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypeNongenericInstantiationAttempt.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocTypeNongenericInstantiationAttempt.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypeNongenericInstantiationAttempt.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocTypedefBeforeParenthesizedExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypedefBeforeParenthesizedExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocTypedefBeforeParenthesizedExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypedefBeforeParenthesizedExpression.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocTypedefMissingType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypedefMissingType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocTypedefMissingType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypedefMissingType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocTypedefMissingType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypedefMissingType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocTypedefMissingType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypedefMissingType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocTypedefNoCrash2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypedefNoCrash2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocTypedefNoCrash2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypedefNoCrash2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsdocTypedef_propertyWithNoType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypedef_propertyWithNoType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsdocTypedef_propertyWithNoType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsdocTypedef_propertyWithNoType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxAttributeMissingInitializer.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxAttributeMissingInitializer.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxAttributeMissingInitializer.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxAttributeMissingInitializer.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxAttributeWithoutExpressionReact.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxAttributeWithoutExpressionReact.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxAttributeWithoutExpressionReact.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxAttributeWithoutExpressionReact.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxCallElaborationCheckNoCrash1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxCallElaborationCheckNoCrash1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxCallElaborationCheckNoCrash1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxCallElaborationCheckNoCrash1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxCallElaborationCheckNoCrash1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxCallElaborationCheckNoCrash1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxCallElaborationCheckNoCrash1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxCallElaborationCheckNoCrash1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxCallbackWithDestructuring.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxCallbackWithDestructuring.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxCallbackWithDestructuring.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxCallbackWithDestructuring.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildWrongType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildWrongType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildWrongType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildWrongType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildWrongType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildWrongType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildWrongType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildWrongType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildrenArrayWrongType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenArrayWrongType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildrenArrayWrongType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenArrayWrongType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildrenArrayWrongType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenArrayWrongType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildrenArrayWrongType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenArrayWrongType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildrenGenericContextualTypes.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenGenericContextualTypes.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildrenGenericContextualTypes.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenGenericContextualTypes.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildrenGenericContextualTypes.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenGenericContextualTypes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildrenGenericContextualTypes.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenGenericContextualTypes.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildrenIndividualErrorElaborations.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenIndividualErrorElaborations.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildrenIndividualErrorElaborations.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenIndividualErrorElaborations.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildrenIndividualErrorElaborations.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenIndividualErrorElaborations.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildrenIndividualErrorElaborations.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenIndividualErrorElaborations.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildrenWrongType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenWrongType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildrenWrongType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenWrongType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxChildrenWrongType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenWrongType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxChildrenWrongType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxChildrenWrongType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxClassAttributeResolution.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxClassAttributeResolution.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxClassAttributeResolution.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxClassAttributeResolution.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxClassAttributeResolution.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxClassAttributeResolution.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxClassAttributeResolution.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxClassAttributeResolution.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxComplexSignatureHasApplicabilityError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxComplexSignatureHasApplicabilityError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxComplexSignatureHasApplicabilityError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxComplexSignatureHasApplicabilityError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxComplexSignatureHasApplicabilityError.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxComplexSignatureHasApplicabilityError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxComplexSignatureHasApplicabilityError.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxComplexSignatureHasApplicabilityError.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxComponentTypeErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxComponentTypeErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxComponentTypeErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxComponentTypeErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxComponentTypeErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxComponentTypeErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxComponentTypeErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxComponentTypeErrors.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxContainsOnlyTriviaWhiteSpacesNotCountedAsChild.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxContainsOnlyTriviaWhiteSpacesNotCountedAsChild.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxContainsOnlyTriviaWhiteSpacesNotCountedAsChild.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxContainsOnlyTriviaWhiteSpacesNotCountedAsChild.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxDeclarationsWithEsModuleInteropNoCrash.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxDeclarationsWithEsModuleInteropNoCrash.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxDeclarationsWithEsModuleInteropNoCrash.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxDeclarationsWithEsModuleInteropNoCrash.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxDeclarationsWithEsModuleInteropNoCrash.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxDeclarationsWithEsModuleInteropNoCrash.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxDeclarationsWithEsModuleInteropNoCrash.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxDeclarationsWithEsModuleInteropNoCrash.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxElementClassTooManyParams.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxElementClassTooManyParams.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxElementClassTooManyParams.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxElementClassTooManyParams.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxElementType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxElementType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxElementType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxElementType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxElementType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxElementType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxElementType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxElementType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxElementTypeLiteral.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxElementTypeLiteral.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxElementTypeLiteral.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxElementTypeLiteral.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxElementTypeLiteral.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxElementTypeLiteral.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxElementTypeLiteral.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxElementTypeLiteral.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxElementTypeLiteralWithGeneric.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxElementTypeLiteralWithGeneric.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxElementTypeLiteralWithGeneric.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxElementTypeLiteralWithGeneric.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxElementTypeLiteralWithGeneric.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxElementTypeLiteralWithGeneric.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxElementTypeLiteralWithGeneric.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxElementTypeLiteralWithGeneric.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxElementsAsIdentifierNames.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxElementsAsIdentifierNames.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxElementsAsIdentifierNames.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxElementsAsIdentifierNames.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxEmitAttributeWithPreserve.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxEmitAttributeWithPreserve.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxEmitAttributeWithPreserve.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxEmitAttributeWithPreserve.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxEmitWithAttributes.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxEmitWithAttributes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxEmitWithAttributes.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxEmitWithAttributes.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxEmptyExpressionNotCountedAsChild2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxEmptyExpressionNotCountedAsChild2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxExcessPropsAndAssignability.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxExcessPropsAndAssignability.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxExcessPropsAndAssignability.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxExcessPropsAndAssignability.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxExcessPropsAndAssignability.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxExcessPropsAndAssignability.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxExcessPropsAndAssignability.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxExcessPropsAndAssignability.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryAndJsxFragmentFactory.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryAndJsxFragmentFactory.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryAndJsxFragmentFactory.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryAndJsxFragmentFactory.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryAndJsxFragmentFactoryErrorNotIdentifier.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryAndJsxFragmentFactoryErrorNotIdentifier.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryAndJsxFragmentFactoryErrorNotIdentifier.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryAndJsxFragmentFactoryErrorNotIdentifier.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryAndJsxFragmentFactoryNull.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryAndJsxFragmentFactoryNull.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryAndJsxFragmentFactoryNull.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryAndJsxFragmentFactoryNull.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryAndReactNamespace.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryAndReactNamespace.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryAndReactNamespace.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryAndReactNamespace.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryAndReactNamespace.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryAndReactNamespace.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryAndReactNamespace.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryAndReactNamespace.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryButNoJsxFragmentFactory.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryButNoJsxFragmentFactory.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryButNoJsxFragmentFactory.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryButNoJsxFragmentFactory.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryIdentifier.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryIdentifier.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryIdentifier.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryIdentifier.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryIdentifierAsParameter.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryIdentifierAsParameter.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryIdentifierAsParameter.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryIdentifierAsParameter.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryIdentifierWithAbsentParameter.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryIdentifierWithAbsentParameter.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryIdentifierWithAbsentParameter.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryIdentifierWithAbsentParameter.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryIdentifierWithAbsentParameter.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryIdentifierWithAbsentParameter.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryIdentifierWithAbsentParameter.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryIdentifierWithAbsentParameter.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryMissingErrorInsideAClass.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryMissingErrorInsideAClass.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryMissingErrorInsideAClass.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryMissingErrorInsideAClass.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryNotIdentifierOrQualifiedName.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryNotIdentifierOrQualifiedName.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryNotIdentifierOrQualifiedName.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryNotIdentifierOrQualifiedName.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryNotIdentifierOrQualifiedName.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryNotIdentifierOrQualifiedName.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryNotIdentifierOrQualifiedName.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryNotIdentifierOrQualifiedName.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryNotIdentifierOrQualifiedName2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryNotIdentifierOrQualifiedName2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryNotIdentifierOrQualifiedName2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryNotIdentifierOrQualifiedName2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryNotIdentifierOrQualifiedName2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryNotIdentifierOrQualifiedName2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryNotIdentifierOrQualifiedName2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryNotIdentifierOrQualifiedName2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryQualifiedName.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryQualifiedName.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryQualifiedName.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryQualifiedName.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryQualifiedNameResolutionError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryQualifiedNameResolutionError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryQualifiedNameResolutionError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryQualifiedNameResolutionError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryQualifiedNameResolutionError.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryQualifiedNameResolutionError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryQualifiedNameResolutionError.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryQualifiedNameResolutionError.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFactoryQualifiedNameWithEs5.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryQualifiedNameWithEs5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFactoryQualifiedNameWithEs5.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFactoryQualifiedNameWithEs5.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFragmentFactoryNoUnusedLocals.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFragmentFactoryNoUnusedLocals.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFragmentFactoryNoUnusedLocals.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFragmentFactoryNoUnusedLocals.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxFragmentFactoryNoUnusedLocals.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxFragmentFactoryNoUnusedLocals.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxFragmentFactoryNoUnusedLocals.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxFragmentFactoryNoUnusedLocals.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxGenericComponentWithSpreadingResultOfGenericFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxGenericComponentWithSpreadingResultOfGenericFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxGenericComponentWithSpreadingResultOfGenericFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxGenericComponentWithSpreadingResultOfGenericFunction.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxHasLiteralType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxHasLiteralType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxHasLiteralType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxHasLiteralType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxHasLiteralType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxHasLiteralType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxHasLiteralType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxHasLiteralType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxHash.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxHash.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxHash.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxHash.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxImportForSideEffectsNonExtantNoError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxImportForSideEffectsNonExtantNoError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxImportForSideEffectsNonExtantNoError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxImportForSideEffectsNonExtantNoError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxImportForSideEffectsNonExtantNoError.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxImportForSideEffectsNonExtantNoError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxImportForSideEffectsNonExtantNoError.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxImportForSideEffectsNonExtantNoError.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxImportInAttribute.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxImportInAttribute.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxImportInAttribute.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxImportInAttribute.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxImportSourceNonPragmaComment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxImportSourceNonPragmaComment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxImportSourceNonPragmaComment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxImportSourceNonPragmaComment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxImportSourceNonPragmaComment.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxImportSourceNonPragmaComment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxImportSourceNonPragmaComment.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxImportSourceNonPragmaComment.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxInExtendsClause.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxInExtendsClause.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxInExtendsClause.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxInExtendsClause.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxInferenceProducesLiteralAsExpected.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxInferenceProducesLiteralAsExpected.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxInferenceProducesLiteralAsExpected.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxInferenceProducesLiteralAsExpected.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxInferenceProducesLiteralAsExpected.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxInferenceProducesLiteralAsExpected.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxInferenceProducesLiteralAsExpected.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxInferenceProducesLiteralAsExpected.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIntrinsicElementsCompatability.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicElementsCompatability.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIntrinsicElementsCompatability.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicElementsCompatability.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIntrinsicElementsCompatability.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicElementsCompatability.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIntrinsicElementsCompatability.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicElementsCompatability.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIntrinsicElementsExtendsRecord.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicElementsExtendsRecord.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIntrinsicElementsExtendsRecord.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicElementsExtendsRecord.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIntrinsicElementsTypeArgumentErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicElementsTypeArgumentErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIntrinsicElementsTypeArgumentErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicElementsTypeArgumentErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIntrinsicElementsTypeArgumentErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicElementsTypeArgumentErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIntrinsicElementsTypeArgumentErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicElementsTypeArgumentErrors.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIntrinsicUnions.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicUnions.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIntrinsicUnions.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicUnions.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIntrinsicUnions.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicUnions.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIntrinsicUnions.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIntrinsicUnions.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIssuesErrorWhenTagExpectsTooManyArguments.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIssuesErrorWhenTagExpectsTooManyArguments.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIssuesErrorWhenTagExpectsTooManyArguments.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIssuesErrorWhenTagExpectsTooManyArguments.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxIssuesErrorWhenTagExpectsTooManyArguments.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxIssuesErrorWhenTagExpectsTooManyArguments.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxIssuesErrorWhenTagExpectsTooManyArguments.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxIssuesErrorWhenTagExpectsTooManyArguments.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxLibraryManagedAttributesUnusedGeneric.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxLibraryManagedAttributesUnusedGeneric.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxLibraryManagedAttributesUnusedGeneric.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxLibraryManagedAttributesUnusedGeneric.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxLocalNamespaceIndexSignatureNoCrash.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxLocalNamespaceIndexSignatureNoCrash.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxLocalNamespaceIndexSignatureNoCrash.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxLocalNamespaceIndexSignatureNoCrash.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxMultilineAttributeStringValues.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxMultilineAttributeStringValues.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxMultilineAttributeStringValues.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxMultilineAttributeStringValues.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxMultilineAttributeValuesReact.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxMultilineAttributeValuesReact.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxMultilineAttributeValuesReact.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxMultilineAttributeValuesReact.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespaceGlobalReexport.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceGlobalReexport.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespaceGlobalReexport.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceGlobalReexport.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespaceGlobalReexportMissingAliasTarget.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceGlobalReexportMissingAliasTarget.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespaceGlobalReexportMissingAliasTarget.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceGlobalReexportMissingAliasTarget.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespaceGlobalReexportMissingAliasTarget.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceGlobalReexportMissingAliasTarget.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespaceGlobalReexportMissingAliasTarget.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceGlobalReexportMissingAliasTarget.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespaceImplicitImportJSXNamespace.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceImplicitImportJSXNamespace.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespaceImplicitImportJSXNamespace.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceImplicitImportJSXNamespace.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=preserve).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=preserve).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=preserve).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=preserve).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceImplicitImportJSXNamespaceFromConfigPickedOverGlobalOne(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespaceImplicitImportJSXNamespaceFromPragmaPickedOverGlobalOne.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceImplicitImportJSXNamespaceFromPragmaPickedOverGlobalOne.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespaceImplicitImportJSXNamespaceFromPragmaPickedOverGlobalOne.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceImplicitImportJSXNamespaceFromPragmaPickedOverGlobalOne.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixInName.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixInName.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixInName.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixInName.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixInName.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixInName.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixInName.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixInName.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixInNameReact.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixInNameReact.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixInNameReact.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixInNameReact.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixInNameReact.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixInNameReact.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixInNameReact.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixInNameReact.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixIntrinsics.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixIntrinsics.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixIntrinsics.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixIntrinsics.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixIntrinsics.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixIntrinsics.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespacePrefixIntrinsics.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacePrefixIntrinsics.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespaceReexports.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceReexports.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespaceReexports.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespaceReexports.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespacedNameNotComparedToNonMatchingIndexSignature.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacedNameNotComparedToNonMatchingIndexSignature.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespacedNameNotComparedToNonMatchingIndexSignature.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacedNameNotComparedToNonMatchingIndexSignature.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNamespacedNameNotComparedToNonMatchingIndexSignature.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacedNameNotComparedToNonMatchingIndexSignature.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNamespacedNameNotComparedToNonMatchingIndexSignature.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNamespacedNameNotComparedToNonMatchingIndexSignature.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxNestedWithinTernaryParsesCorrectly.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxNestedWithinTernaryParsesCorrectly.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxNestedWithinTernaryParsesCorrectly.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxNestedWithinTernaryParsesCorrectly.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxPartialSpread.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxPartialSpread.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxPartialSpread.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxPartialSpread.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxPartialSpread.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxPartialSpread.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxPartialSpread.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxPartialSpread.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxPreserveWithJsInput.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxPreserveWithJsInput.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxPreserveWithJsInput.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxPreserveWithJsInput.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxPropsAsIdentifierNames.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxPropsAsIdentifierNames.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxPropsAsIdentifierNames.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxPropsAsIdentifierNames.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react-jsx).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react-jsx).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react-jsx).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react-jsx).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react-jsxdev).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react-jsxdev).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react-jsxdev).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react-jsxdev).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxRuntimePragma(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxRuntimePragma(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxSpreadFirstUnionNoErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadFirstUnionNoErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxSpreadFirstUnionNoErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadFirstUnionNoErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxSpreadFirstUnionNoErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadFirstUnionNoErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxSpreadFirstUnionNoErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadFirstUnionNoErrors.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxSpreadTag(target=es2015).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadTag(target=es2015).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxSpreadTag(target=es2015).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadTag(target=es2015).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxSpreadTag(target=es2015).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadTag(target=es2015).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxSpreadTag(target=es2015).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadTag(target=es2015).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxSpreadTag(target=esnext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadTag(target=esnext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxSpreadTag(target=esnext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadTag(target=esnext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxSpreadTag(target=esnext).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadTag(target=esnext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxSpreadTag(target=esnext).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxSpreadTag(target=esnext).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxViaImport.2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxViaImport.2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxViaImport.2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxViaImport.2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxViaImport.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxViaImport.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxViaImport.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxViaImport.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/jsxViaImport.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/jsxViaImport.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/jsxViaImport.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/jsxViaImport.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/keywordInJsxIdentifier.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/keywordInJsxIdentifier.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/keywordInJsxIdentifier.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/keywordInJsxIdentifier.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/lateBoundMethodNameAssigmentJS.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/lateBoundMethodNameAssigmentJS.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/lateBoundMethodNameAssigmentJS.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/lateBoundMethodNameAssigmentJS.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/localRequireFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/localRequireFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/localRequireFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/localRequireFunction.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/misspelledJsDocTypedefTags.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/misspelledJsDocTypedefTags.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/misspelledJsDocTypedefTags.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/misspelledJsDocTypedefTags.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/misspelledJsDocTypedefTags.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/misspelledJsDocTypedefTags.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/misspelledJsDocTypedefTags.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/misspelledJsDocTypedefTags.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleExportsTypeNoExcessPropertyCheckFromContainedLiteral.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleNoneDynamicImport(target=es2015).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleNoneDynamicImport(target=es2015).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleNoneDynamicImport(target=es2015).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleNoneDynamicImport(target=es2015).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleNoneDynamicImport(target=es2020).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleNoneDynamicImport(target=es2020).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleNoneDynamicImport(target=es2020).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleNoneDynamicImport(target=es2020).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/modulePreserve2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/modulePreserve2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/modulePreserve2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/modulePreserve2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/modulePreserve3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/modulePreserve3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/modulePreserve4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/modulePreserve4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/modulePreserve4.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/modulePreserve4.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve4.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleResolutionNoTsCJS.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionNoTsCJS.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleResolutionNoTsCJS.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionNoTsCJS.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleResolutionNoTsESM.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionNoTsESM.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleResolutionNoTsESM.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionNoTsESM.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleResolutionWithExtensions_notSupported.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionWithExtensions_notSupported.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleResolutionWithExtensions_notSupported.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionWithExtensions_notSupported.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleResolutionWithExtensions_notSupported.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionWithExtensions_notSupported.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleResolutionWithExtensions_notSupported.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionWithExtensions_notSupported.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleResolutionWithSuffixes_one_jsModule.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionWithSuffixes_one_jsModule.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleResolutionWithSuffixes_one_jsModule.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionWithSuffixes_one_jsModule.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleResolutionWithSuffixes_one_jsModule.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionWithSuffixes_one_jsModule.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleResolutionWithSuffixes_one_jsModule.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleResolutionWithSuffixes_one_jsModule.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleResolution_classicPrefersTs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleResolution_classicPrefersTs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleResolution_classicPrefersTs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleResolution_classicPrefersTs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/moduleResolution_classicPrefersTs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/moduleResolution_classicPrefersTs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/moduleResolution_classicPrefersTs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/moduleResolution_classicPrefersTs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/narrowingPlainJsNoCrash1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/narrowingPlainJsNoCrash1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/narrowingPlainJsNoCrash1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/narrowingPlainJsNoCrash1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/noCrashOnParameterNamedRequire.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/noCrashOnParameterNamedRequire.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/noCrashOnParameterNamedRequire.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/noCrashOnParameterNamedRequire.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/noParameterReassignmentIIFEAnnotated.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/noParameterReassignmentIIFEAnnotated.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/noParameterReassignmentIIFEAnnotated.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/noParameterReassignmentIIFEAnnotated.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/noParameterReassignmentIIFEAnnotated.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/noParameterReassignmentIIFEAnnotated.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/noParameterReassignmentIIFEAnnotated.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/noParameterReassignmentIIFEAnnotated.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/noParameterReassignmentJSIIFE.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/noParameterReassignmentJSIIFE.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/noParameterReassignmentJSIIFE.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/noParameterReassignmentJSIIFE.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/objectPropertyAsClass.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/objectPropertyAsClass.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/objectPropertyAsClass.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/objectPropertyAsClass.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parenthesizedJSDocCastAtReturnStatement.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parenthesizedJSDocCastAtReturnStatement.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parenthesizedJSDocCastAtReturnStatement.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parenthesizedJSDocCastAtReturnStatement.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parenthesizedJSDocCastAtReturnStatement.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parenthesizedJSDocCastAtReturnStatement.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parenthesizedJSDocCastAtReturnStatement.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parenthesizedJSDocCastAtReturnStatement.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parenthesizedJSDocCastDoesNotNarrow.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parenthesizedJSDocCastDoesNotNarrow.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parenthesizedJSDocCastDoesNotNarrow.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parenthesizedJSDocCastDoesNotNarrow.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parenthesizedJSDocCastDoesNotNarrow.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parenthesizedJSDocCastDoesNotNarrow.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parenthesizedJSDocCastDoesNotNarrow.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parenthesizedJSDocCastDoesNotNarrow.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash3.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseJsxElementInUnaryExpressionNoCrash3.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseJsxElementInUnaryExpressionNoCrash3.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseJsxExtends1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseJsxExtends1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseJsxExtends1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseJsxExtends1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseJsxExtends2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseJsxExtends2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseJsxExtends2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseJsxExtends2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseJsxExtends2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseJsxExtends2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseJsxExtends2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseJsxExtends2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx1.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx1.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx1.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx3.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx3.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx3.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx4.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parseUnaryExpressionNoTypeAssertionInJsx4.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parseUnaryExpressionNoTypeAssertionInJsx4.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/parserUnparsedTokenCrash1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parserUnparsedTokenCrash1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parserUnparsedTokenCrash1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parserUnparsedTokenCrash1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parsingDeepParenthensizedExpression.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parsingDeepParenthensizedExpression.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parsingDeepParenthensizedExpression.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parsingDeepParenthensizedExpression.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/parsingDeepParenthensizedExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/parsingDeepParenthensizedExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/parsingDeepParenthensizedExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/parsingDeepParenthensizedExpression.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/pushTypeGetTypeOfAlias.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/pushTypeGetTypeOfAlias.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/pushTypeGetTypeOfAlias.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/pushTypeGetTypeOfAlias.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/pushTypeGetTypeOfAlias.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/pushTypeGetTypeOfAlias.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/pushTypeGetTypeOfAlias.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/pushTypeGetTypeOfAlias.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/quickIntersectionCheckCorrectlyCachesErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/quickIntersectionCheckCorrectlyCachesErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/quickIntersectionCheckCorrectlyCachesErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/quickIntersectionCheckCorrectlyCachesErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/quickIntersectionCheckCorrectlyCachesErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/quickIntersectionCheckCorrectlyCachesErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/quickIntersectionCheckCorrectlyCachesErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/quickIntersectionCheckCorrectlyCachesErrors.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactDefaultPropsInferenceSuccess.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactDefaultPropsInferenceSuccess.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactDefaultPropsInferenceSuccess.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactDefaultPropsInferenceSuccess.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactDefaultPropsInferenceSuccess.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactDefaultPropsInferenceSuccess.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactDefaultPropsInferenceSuccess.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactDefaultPropsInferenceSuccess.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactHOCSpreadprops.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactHOCSpreadprops.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactHOCSpreadprops.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactHOCSpreadprops.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactHOCSpreadprops.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactHOCSpreadprops.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactHOCSpreadprops.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactHOCSpreadprops.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactImportDropped.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactImportDropped.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactImportDropped.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactImportDropped.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactImportDropped.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactImportDropped.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactImportDropped.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactImportDropped.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsx).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsx).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsx).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsx).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactImportUnusedInNewJSXEmit(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactJsxReactResolvedNodeNext.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactJsxReactResolvedNodeNext.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactJsxReactResolvedNodeNext.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactJsxReactResolvedNodeNext.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactJsxReactResolvedNodeNextEsm.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactJsxReactResolvedNodeNextEsm.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactJsxReactResolvedNodeNextEsm.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactJsxReactResolvedNodeNextEsm.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactNamespaceImportPresevation.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceImportPresevation.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactNamespaceImportPresevation.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceImportPresevation.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactNamespaceInvalidInput.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceInvalidInput.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactNamespaceInvalidInput.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceInvalidInput.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactNamespaceInvalidInput.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceInvalidInput.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactNamespaceInvalidInput.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceInvalidInput.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactNamespaceJSXEmit.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceJSXEmit.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactNamespaceJSXEmit.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceJSXEmit.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactNamespaceMissingDeclaration.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceMissingDeclaration.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactNamespaceMissingDeclaration.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceMissingDeclaration.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactNamespaceMissingDeclaration.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceMissingDeclaration.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactNamespaceMissingDeclaration.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactNamespaceMissingDeclaration.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactReadonlyHOCAssignabilityReal.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactReadonlyHOCAssignabilityReal.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactReadonlyHOCAssignabilityReal.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactReadonlyHOCAssignabilityReal.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactReadonlyHOCAssignabilityReal.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactReadonlyHOCAssignabilityReal.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactReadonlyHOCAssignabilityReal.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactReadonlyHOCAssignabilityReal.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactSFCAndFunctionResolvable.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactSFCAndFunctionResolvable.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactSFCAndFunctionResolvable.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactSFCAndFunctionResolvable.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactSFCAndFunctionResolvable.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactSFCAndFunctionResolvable.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactSFCAndFunctionResolvable.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactSFCAndFunctionResolvable.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactTagNameComponentWithPropsNoOOM.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactTagNameComponentWithPropsNoOOM.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactTagNameComponentWithPropsNoOOM.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactTagNameComponentWithPropsNoOOM.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactTagNameComponentWithPropsNoOOM.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactTagNameComponentWithPropsNoOOM.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactTagNameComponentWithPropsNoOOM.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactTagNameComponentWithPropsNoOOM.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactTagNameComponentWithPropsNoOOM2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactTagNameComponentWithPropsNoOOM2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactTagNameComponentWithPropsNoOOM2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactTagNameComponentWithPropsNoOOM2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/reactTagNameComponentWithPropsNoOOM2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reactTagNameComponentWithPropsNoOOM2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reactTagNameComponentWithPropsNoOOM2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reactTagNameComponentWithPropsNoOOM2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/recursiveResolveDeclaredMembers.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/recursiveResolveDeclaredMembers.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/recursiveResolveDeclaredMembers.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/recursiveResolveDeclaredMembers.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/recursiveResolveDeclaredMembers.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/recursiveResolveDeclaredMembers.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/recursiveResolveDeclaredMembers.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/recursiveResolveDeclaredMembers.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/requireAsFunctionInExternalModule.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/requireAsFunctionInExternalModule.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/requireAsFunctionInExternalModule.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/requireAsFunctionInExternalModule.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/requireOfJsonFileInJsFile.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/requireOfJsonFileInJsFile.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/requireOfJsonFileInJsFile.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/requireOfJsonFileInJsFile.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/requireOfJsonFileInJsFile.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/requireOfJsonFileInJsFile.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/requireOfJsonFileInJsFile.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/requireOfJsonFileInJsFile.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/resolveNameWithNamspace.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/resolveNameWithNamspace.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/resolveNameWithNamspace.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/resolveNameWithNamspace.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/resolveNameWithNamspace.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/resolveNameWithNamspace.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/resolveNameWithNamspace.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/resolveNameWithNamspace.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/returnTypePredicateIsInstantiateInContextOfTarget.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/returnTypePredicateIsInstantiateInContextOfTarget.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/returnTypePredicateIsInstantiateInContextOfTarget.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/returnTypePredicateIsInstantiateInContextOfTarget.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/returnTypePredicateIsInstantiateInContextOfTarget.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/returnTypePredicateIsInstantiateInContextOfTarget.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/returnTypePredicateIsInstantiateInContextOfTarget.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/returnTypePredicateIsInstantiateInContextOfTarget.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/reuseTypeAnnotationImportTypeInGlobalThisTypeArgument.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/reuseTypeAnnotationImportTypeInGlobalThisTypeArgument.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/reuseTypeAnnotationImportTypeInGlobalThisTypeArgument.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/reuseTypeAnnotationImportTypeInGlobalThisTypeArgument.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/signaturesUseJSDocForOptionalParameters.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/signaturesUseJSDocForOptionalParameters.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/signaturesUseJSDocForOptionalParameters.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/signaturesUseJSDocForOptionalParameters.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/spellingSuggestionJSXAttribute.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/spellingSuggestionJSXAttribute.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/spellingSuggestionJSXAttribute.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/spellingSuggestionJSXAttribute.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/spellingSuggestionJSXAttribute.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/spellingSuggestionJSXAttribute.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/spellingSuggestionJSXAttribute.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/spellingSuggestionJSXAttribute.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/spreadIntersectionJsx.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/spreadIntersectionJsx.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/spreadIntersectionJsx.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/spreadIntersectionJsx.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/strictOptionalProperties3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/strictOptionalProperties3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/strictOptionalProperties3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/strictOptionalProperties3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/strictOptionalProperties3.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/strictOptionalProperties3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/strictOptionalProperties3.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/strictOptionalProperties3.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/strictOptionalProperties4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/strictOptionalProperties4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/strictOptionalProperties4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/strictOptionalProperties4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/strictOptionalProperties4.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/strictOptionalProperties4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/strictOptionalProperties4.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/strictOptionalProperties4.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/subclassThisTypeAssignable01.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/subclassThisTypeAssignable01.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/subclassThisTypeAssignable01.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/subclassThisTypeAssignable01.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/subclassThisTypeAssignable01.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/subclassThisTypeAssignable01.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/subclassThisTypeAssignable01.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/subclassThisTypeAssignable01.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/subclassThisTypeAssignable02.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/subclassThisTypeAssignable02.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/subclassThisTypeAssignable02.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/subclassThisTypeAssignable02.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/superNoModifiersCrash.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/superNoModifiersCrash.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/superNoModifiersCrash.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/superNoModifiersCrash.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/superNoModifiersCrash.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/superNoModifiersCrash.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/superNoModifiersCrash.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/superNoModifiersCrash.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/thisAssignmentInNamespaceDeclaration1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/thisAssignmentInNamespaceDeclaration1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/thisAssignmentInNamespaceDeclaration1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/thisAssignmentInNamespaceDeclaration1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/thisInFunctionCallJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/thisInFunctionCallJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/thisInFunctionCallJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/thisInFunctionCallJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/thisInFunctionCallJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/thisInFunctionCallJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/thisInFunctionCallJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/thisInFunctionCallJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/thisInObjectJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/thisInObjectJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/thisInObjectJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/thisInObjectJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/topLevelBlockExpando.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/topLevelBlockExpando.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/topLevelBlockExpando.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/topLevelBlockExpando.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/truthinessCallExpressionCoercion4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/truthinessCallExpressionCoercion4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/truthinessCallExpressionCoercion4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/truthinessCallExpressionCoercion4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/truthinessCallExpressionCoercion4.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/truthinessCallExpressionCoercion4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/truthinessCallExpressionCoercion4.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/truthinessCallExpressionCoercion4.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tslibInJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tslibInJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tslibInJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tslibInJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxAttributeQuickinfoTypesSameAsObjectLiteral.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxAttributeQuickinfoTypesSameAsObjectLiteral.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxAttributeQuickinfoTypesSameAsObjectLiteral.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxAttributeQuickinfoTypesSameAsObjectLiteral.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxAttributesHasInferrableIndex.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxAttributesHasInferrableIndex.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxAttributesHasInferrableIndex.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxAttributesHasInferrableIndex.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxDeepAttributeAssignabilityError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxDeepAttributeAssignabilityError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxDeepAttributeAssignabilityError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxDeepAttributeAssignabilityError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxDeepAttributeAssignabilityError.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxDeepAttributeAssignabilityError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxDeepAttributeAssignabilityError.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxDeepAttributeAssignabilityError.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxDiscriminantPropertyInference.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxDiscriminantPropertyInference.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxDiscriminantPropertyInference.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxDiscriminantPropertyInference.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxFragmentChildrenCheck.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxFragmentChildrenCheck.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxFragmentChildrenCheck.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxFragmentChildrenCheck.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxFragmentChildrenCheck.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxFragmentChildrenCheck.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxFragmentChildrenCheck.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxFragmentChildrenCheck.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxInferenceShouldNotYieldAnyOnUnions.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxInferenceShouldNotYieldAnyOnUnions.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxInferenceShouldNotYieldAnyOnUnions.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxInferenceShouldNotYieldAnyOnUnions.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxInvokeComponentType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxInvokeComponentType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxInvokeComponentType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxInvokeComponentType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxInvokeComponentType.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxInvokeComponentType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxInvokeComponentType.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxInvokeComponentType.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxNotUsingApparentTypeOfSFC.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxNotUsingApparentTypeOfSFC.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxNotUsingApparentTypeOfSFC.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxNotUsingApparentTypeOfSFC.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxNotUsingApparentTypeOfSFC.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxNotUsingApparentTypeOfSFC.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxNotUsingApparentTypeOfSFC.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxNotUsingApparentTypeOfSFC.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxReactPropsInferenceSucceedsOnIntersections.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxReactPropsInferenceSucceedsOnIntersections.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxReactPropsInferenceSucceedsOnIntersections.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxReactPropsInferenceSucceedsOnIntersections.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxReactPropsInferenceSucceedsOnIntersections.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxReactPropsInferenceSucceedsOnIntersections.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxReactPropsInferenceSucceedsOnIntersections.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxReactPropsInferenceSucceedsOnIntersections.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxResolveExternalModuleExportsTypes.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxResolveExternalModuleExportsTypes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxResolveExternalModuleExportsTypes.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxResolveExternalModuleExportsTypes.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxSpreadDoesNotReportExcessProps.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxSpreadDoesNotReportExcessProps.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxSpreadDoesNotReportExcessProps.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxSpreadDoesNotReportExcessProps.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxSpreadDoesNotReportExcessProps.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxSpreadDoesNotReportExcessProps.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxSpreadDoesNotReportExcessProps.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxSpreadDoesNotReportExcessProps.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxStatelessComponentDefaultProps.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxStatelessComponentDefaultProps.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxStatelessComponentDefaultProps.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxStatelessComponentDefaultProps.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxStatelessComponentDefaultProps.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxStatelessComponentDefaultProps.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxStatelessComponentDefaultProps.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxStatelessComponentDefaultProps.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxTypeArgumentPartialDefinitionStillErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxTypeArgumentPartialDefinitionStillErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxTypeArgumentPartialDefinitionStillErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxTypeArgumentPartialDefinitionStillErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxTypeArgumentPartialDefinitionStillErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxTypeArgumentPartialDefinitionStillErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxTypeArgumentPartialDefinitionStillErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxTypeArgumentPartialDefinitionStillErrors.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxUnionMemberChecksFilterDataProps.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxUnionMemberChecksFilterDataProps.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxUnionMemberChecksFilterDataProps.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxUnionMemberChecksFilterDataProps.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxUnionMemberChecksFilterDataProps.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxUnionMemberChecksFilterDataProps.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxUnionMemberChecksFilterDataProps.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxUnionMemberChecksFilterDataProps.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/tsxUnionSpread.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/tsxUnionSpread.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/tsxUnionSpread.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/tsxUnionSpread.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/typeInferenceWithExcessPropertiesJsx.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/typeInferenceWithExcessPropertiesJsx.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/typeInferenceWithExcessPropertiesJsx.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/typeInferenceWithExcessPropertiesJsx.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/typeInferenceWithExcessPropertiesJsx.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/typeInferenceWithExcessPropertiesJsx.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/typeInferenceWithExcessPropertiesJsx.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/typeInferenceWithExcessPropertiesJsx.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/unicodeEscapesInJSDoc.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unicodeEscapesInJSDoc.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unicodeEscapesInJSDoc.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unicodeEscapesInJSDoc.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/unionReductionWithStringMappingAndIdenticalBaseTypeExistsNoCrash.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unionReductionWithStringMappingAndIdenticalBaseTypeExistsNoCrash.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unionReductionWithStringMappingAndIdenticalBaseTypeExistsNoCrash.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unionReductionWithStringMappingAndIdenticalBaseTypeExistsNoCrash.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/uniqueSymbolJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/uniqueSymbolJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/uniqueSymbolJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/uniqueSymbolJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/uniqueSymbolJs.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/uniqueSymbolJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/uniqueSymbolJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/uniqueSymbolJs.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/unmetTypeConstraintInJSDocImportCall.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unmetTypeConstraintInJSDocImportCall.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unmetTypeConstraintInJSDocImportCall.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unmetTypeConstraintInJSDocImportCall.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedImports13.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedImports13.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedImports13.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedImports13.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedImports13.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedImports13.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedImports13.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedImports13.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedImports14.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedImports14.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedImports14.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedImports14.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedImports14.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedImports14.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedImports14.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedImports14.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedImports15.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedImports15.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedImports15.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedImports15.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedImports15.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedImports15.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedImports15.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedImports15.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedImports16.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedImports16.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedImports16.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedImports16.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedImports16.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedImports16.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedImports16.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedImports16.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedTypeParameters_templateTag.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedTypeParameters_templateTag.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedTypeParameters_templateTag.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedTypeParameters_templateTag.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedTypeParameters_templateTag.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedTypeParameters_templateTag.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedTypeParameters_templateTag.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedTypeParameters_templateTag.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedTypeParameters_templateTag2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedTypeParameters_templateTag2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedTypeParameters_templateTag2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedTypeParameters_templateTag2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/unusedTypeParameters_templateTag2.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/unusedTypeParameters_templateTag2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/unusedTypeParameters_templateTag2.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/unusedTypeParameters_templateTag2.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/useBeforeDeclaration_jsx.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/useBeforeDeclaration_jsx.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/useBeforeDeclaration_jsx.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/useBeforeDeclaration_jsx.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/useBeforeDeclaration_jsx.types.diff b/testdata/baselines/reference/submoduleAccepted/compiler/useBeforeDeclaration_jsx.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/useBeforeDeclaration_jsx.types.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/useBeforeDeclaration_jsx.types.diff diff --git a/testdata/baselines/reference/submodule/compiler/usedImportNotElidedInJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/usedImportNotElidedInJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/usedImportNotElidedInJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/usedImportNotElidedInJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/compiler/verbatimModuleSyntaxReactReference.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/compiler/verbatimModuleSyntaxReactReference.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/compiler/verbatimModuleSyntaxReactReference.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/compiler/verbatimModuleSyntaxReactReference.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/allowImportingTsExtensions(moduleresolution=bundler).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/allowImportingTsExtensions(moduleresolution=bundler).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/allowImportingTsExtensions(moduleresolution=bundler).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/allowImportingTsExtensions(moduleresolution=bundler).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/allowImportingTsExtensions(moduleresolution=classic).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/allowImportingTsExtensions(moduleresolution=classic).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/allowImportingTsExtensions(moduleresolution=classic).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/allowImportingTsExtensions(moduleresolution=classic).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/allowImportingTsExtensions(moduleresolution=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/allowImportingTsExtensions(moduleresolution=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/allowImportingTsExtensions(moduleresolution=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/allowImportingTsExtensions(moduleresolution=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/allowImportingTsExtensions(moduleresolution=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/allowImportingTsExtensions(moduleresolution=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/allowImportingTsExtensions(moduleresolution=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/allowImportingTsExtensions(moduleresolution=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/annotatedThisPropertyInitializerDoesntNarrow.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/annotatedThisPropertyInitializerDoesntNarrow.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/annotatedThisPropertyInitializerDoesntNarrow.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/annotatedThisPropertyInitializerDoesntNarrow.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/annotatedThisPropertyInitializerDoesntNarrow.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/annotatedThisPropertyInitializerDoesntNarrow.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/annotatedThisPropertyInitializerDoesntNarrow.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/annotatedThisPropertyInitializerDoesntNarrow.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/assertionTypePredicates2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/assertionTypePredicates2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/assertionTypePredicates2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/assertionTypePredicates2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/assertionsAndNonReturningFunctions.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/assertionsAndNonReturningFunctions.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/assertionsAndNonReturningFunctions.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/assertionsAndNonReturningFunctions.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/assertionsAndNonReturningFunctions.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/assertionsAndNonReturningFunctions.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/assertionsAndNonReturningFunctions.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/assertionsAndNonReturningFunctions.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/assignmentToVoidZero1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/assignmentToVoidZero1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/assignmentToVoidZero1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/assignmentToVoidZero1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/assignmentToVoidZero1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/assignmentToVoidZero1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/assignmentToVoidZero1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/assignmentToVoidZero1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/assignmentToVoidZero2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/assignmentToVoidZero2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/assignmentToVoidZero2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/assignmentToVoidZero2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/assignmentToVoidZero2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/assignmentToVoidZero2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/assignmentToVoidZero2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/assignmentToVoidZero2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/asyncArrowFunction_allowJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/asyncArrowFunction_allowJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/asyncArrowFunction_allowJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/asyncArrowFunction_allowJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/asyncArrowFunction_allowJs.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/asyncArrowFunction_allowJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/asyncArrowFunction_allowJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/asyncArrowFunction_allowJs.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/asyncFunctionDeclaration16_es5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/asyncFunctionDeclaration16_es5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/asyncFunctionDeclaration16_es5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/asyncFunctionDeclaration16_es5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/asyncFunctionDeclaration16_es5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/asyncFunctionDeclaration16_es5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/asyncFunctionDeclaration16_es5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/asyncFunctionDeclaration16_es5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/binderUninitializedModuleExportsAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/binderUninitializedModuleExportsAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/binderUninitializedModuleExportsAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/binderUninitializedModuleExportsAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/binderUninitializedModuleExportsAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/binderUninitializedModuleExportsAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/binderUninitializedModuleExportsAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/binderUninitializedModuleExportsAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=false).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=false).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=false).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=false).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=true).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=true).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=true).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/bundlerImportTsExtensions(allowimportingtsextensions=false,noemit=true).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=false).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=false).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=false).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=false).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=true).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=true).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=true).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/bundlerImportTsExtensions(allowimportingtsextensions=true,noemit=true).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/bundlerSyntaxRestrictions(module=esnext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/bundlerSyntaxRestrictions(module=esnext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/bundlerSyntaxRestrictions(module=esnext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/bundlerSyntaxRestrictions(module=esnext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/bundlerSyntaxRestrictions(module=preserve).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/bundlerSyntaxRestrictions(module=preserve).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/bundlerSyntaxRestrictions(module=preserve).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/bundlerSyntaxRestrictions(module=preserve).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callOfPropertylessConstructorFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callOfPropertylessConstructorFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callOfPropertylessConstructorFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callOfPropertylessConstructorFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/callOfPropertylessConstructorFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callOfPropertylessConstructorFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callOfPropertylessConstructorFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callOfPropertylessConstructorFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=false).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=true).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=true).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=true).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callWithMissingVoidUndefinedUnknownAnyInJs(strict=true).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackCrossModule.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackCrossModule.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackCrossModule.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackCrossModule.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackCrossModule.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackCrossModule.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackCrossModule.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackCrossModule.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackOnConstructor.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackOnConstructor.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackOnConstructor.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackOnConstructor.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackTag2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackTag2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackTag2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackTag2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackTag2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackTag2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackTag2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackTag2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackTag3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackTag3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackTag3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackTag3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackTag4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackTag4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackTag4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackTag4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackTag4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackTag4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackTag4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackTag4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackTagNamespace.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackTagNamespace.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackTagNamespace.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackTagNamespace.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackTagNestedParameter.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackTagNestedParameter.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackTagNestedParameter.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackTagNestedParameter.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackTagVariadicType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackTagVariadicType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackTagVariadicType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackTagVariadicType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/callbackTagVariadicType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/callbackTagVariadicType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/callbackTagVariadicType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/callbackTagVariadicType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/chainedPrototypeAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/chainedPrototypeAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/chainedPrototypeAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/chainedPrototypeAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/chainedPrototypeAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/chainedPrototypeAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/chainedPrototypeAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/chainedPrototypeAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocOnEndOfFile.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocOnEndOfFile.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocOnEndOfFile.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocOnEndOfFile.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocOptionalParamOrder.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocOptionalParamOrder.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocOptionalParamOrder.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocOptionalParamOrder.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocOptionalParamOrder.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocOptionalParamOrder.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocOptionalParamOrder.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocOptionalParamOrder.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocParamOnVariableDeclaredFunctionExpression.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocParamOnVariableDeclaredFunctionExpression.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocParamOnVariableDeclaredFunctionExpression.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocParamOnVariableDeclaredFunctionExpression.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocParamOnVariableDeclaredFunctionExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocParamOnVariableDeclaredFunctionExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocParamOnVariableDeclaredFunctionExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocParamOnVariableDeclaredFunctionExpression.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocParamTag1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocParamTag1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocParamTag1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocParamTag1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocParamTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocParamTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocParamTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocParamTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocReturnTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocReturnTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocReturnTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocReturnTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocReturnTag2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocReturnTag2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocReturnTag2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocReturnTag2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocReturnTag2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocReturnTag2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocReturnTag2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocReturnTag2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag10.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag10.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag10.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag10.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag11.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag11.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag11.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag11.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag12.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag12.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag12.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag12.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag12.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag12.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag12.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag12.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag13.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag13.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag13.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag13.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag13.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag13.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag13.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag13.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag14.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag14.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag14.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag14.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag8.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag8.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag8.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag8.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag9.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag9.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocSatisfiesTag9.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocSatisfiesTag9.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTag7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTag7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTagOnObjectProperty1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTagOnObjectProperty1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTagOnObjectProperty1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTagOnObjectProperty1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTagOnObjectProperty1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTagOnObjectProperty1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTagOnObjectProperty1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTagOnObjectProperty1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTagOnObjectProperty2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTagOnObjectProperty2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTagOnObjectProperty2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTagOnObjectProperty2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypeTagOnObjectProperty2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTagOnObjectProperty2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypeTagOnObjectProperty2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypeTagOnObjectProperty2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypedefInParamTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypedefInParamTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypedefInParamTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypedefInParamTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypedefOnlySourceFile.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypedefOnlySourceFile.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypedefOnlySourceFile.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypedefOnlySourceFile.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsdocTypedefOnlySourceFile.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypedefOnlySourceFile.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsdocTypedefOnlySourceFile.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsdocTypedefOnlySourceFile.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenCanBeTupleType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenCanBeTupleType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenCanBeTupleType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenCanBeTupleType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenCanBeTupleType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenCanBeTupleType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenCanBeTupleType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenCanBeTupleType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty10.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty10.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty10.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty10.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty11.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty11.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty11.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty11.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty12.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty12.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty12.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty12.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty12.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty12.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty12.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty12.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty13.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty13.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty13.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty13.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty13.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty13.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty13.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty13.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty14.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty14.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty14.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty14.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty14.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty14.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty14.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty14.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty15.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty15.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty15.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty15.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty15.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty15.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty15.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty15.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty16.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty16.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty16.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty16.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty16.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty16.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty16.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty16.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty8.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty8.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty8.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty8.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty9.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty9.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty9.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty9.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty9.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty9.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxChildrenProperty9.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxChildrenProperty9.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxGenericTagHasCorrectInferences.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxGenericTagHasCorrectInferences.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxGenericTagHasCorrectInferences.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxGenericTagHasCorrectInferences.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxGenericTagHasCorrectInferences.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxGenericTagHasCorrectInferences.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxGenericTagHasCorrectInferences.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxGenericTagHasCorrectInferences.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxIntersectionElementPropsType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxIntersectionElementPropsType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxIntersectionElementPropsType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxIntersectionElementPropsType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxNamespaceNamesQuestionableForms.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxNamespaceNamesQuestionableForms.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxNamespaceNamesQuestionableForms.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxNamespaceNamesQuestionableForms.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxSubtleSkipContextSensitiveBug.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxSubtleSkipContextSensitiveBug.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxSubtleSkipContextSensitiveBug.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxSubtleSkipContextSensitiveBug.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxSubtleSkipContextSensitiveBug.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxSubtleSkipContextSensitiveBug.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxSubtleSkipContextSensitiveBug.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxSubtleSkipContextSensitiveBug.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxUnionSFXContextualTypeInferredCorrectly.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxUnionSFXContextualTypeInferredCorrectly.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxUnionSFXContextualTypeInferredCorrectly.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxUnionSFXContextualTypeInferredCorrectly.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkJsxUnionSFXContextualTypeInferredCorrectly.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkJsxUnionSFXContextualTypeInferredCorrectly.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkJsxUnionSFXContextualTypeInferredCorrectly.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkJsxUnionSFXContextualTypeInferredCorrectly.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkOtherObjectAssignProperty.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkOtherObjectAssignProperty.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkOtherObjectAssignProperty.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkOtherObjectAssignProperty.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkOtherObjectAssignProperty.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkOtherObjectAssignProperty.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkOtherObjectAssignProperty.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkOtherObjectAssignProperty.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkSpecialPropertyAssignments.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkSpecialPropertyAssignments.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkSpecialPropertyAssignments.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkSpecialPropertyAssignments.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/checkSpecialPropertyAssignments.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/checkSpecialPropertyAssignments.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/checkSpecialPropertyAssignments.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/checkSpecialPropertyAssignments.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/circularMultipleAssignmentDeclaration.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/circularMultipleAssignmentDeclaration.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/circularMultipleAssignmentDeclaration.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/circularMultipleAssignmentDeclaration.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/circularMultipleAssignmentDeclaration.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/circularMultipleAssignmentDeclaration.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/circularMultipleAssignmentDeclaration.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/circularMultipleAssignmentDeclaration.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/classCanExtendConstructorFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/classCanExtendConstructorFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/classCanExtendConstructorFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/classCanExtendConstructorFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/classCanExtendConstructorFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/classCanExtendConstructorFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/classCanExtendConstructorFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/classCanExtendConstructorFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/commentEmittingInPreserveJsx1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commentEmittingInPreserveJsx1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commentEmittingInPreserveJsx1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commentEmittingInPreserveJsx1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/commentEmittingInPreserveJsx1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commentEmittingInPreserveJsx1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commentEmittingInPreserveJsx1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commentEmittingInPreserveJsx1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJSAliasedExport.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJSAliasedExport.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJSAliasedExport.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJSAliasedExport.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJSAliasedExport.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJSAliasedExport.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJSAliasedExport.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJSAliasedExport.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJSImportClassTypeReference.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportClassTypeReference.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJSImportClassTypeReference.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportClassTypeReference.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJSImportClassTypeReference.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportClassTypeReference.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJSImportClassTypeReference.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportClassTypeReference.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJSImportExportedClassExpression.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportExportedClassExpression.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJSImportExportedClassExpression.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportExportedClassExpression.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJSImportExportedClassExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportExportedClassExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJSImportExportedClassExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportExportedClassExpression.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJSImportNestedClassTypeReference.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportNestedClassTypeReference.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJSImportNestedClassTypeReference.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportNestedClassTypeReference.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJSImportNestedClassTypeReference.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportNestedClassTypeReference.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJSImportNestedClassTypeReference.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJSImportNestedClassTypeReference.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJSReexport.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJSReexport.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJSReexport.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJSReexport.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJSReexport.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJSReexport.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJSReexport.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJSReexport.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJsImportBindingElementNarrowType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJsImportBindingElementNarrowType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJsImportBindingElementNarrowType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJsImportBindingElementNarrowType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/commonJsImportBindingElementNarrowType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/commonJsImportBindingElementNarrowType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/commonJsImportBindingElementNarrowType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/commonJsImportBindingElementNarrowType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/computedPropertyNames52(target=es2015).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/computedPropertyNames52(target=es2015).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/computedPropertyNames52(target=es2015).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/computedPropertyNames52(target=es2015).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/computedPropertyNames52(target=es5).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/computedPropertyNames52(target=es5).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/computedPropertyNames52(target=es5).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/computedPropertyNames52(target=es5).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/conditionalExportsResolutionFallback(moduleresolution=bundler).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/conditionalExportsResolutionFallback(moduleresolution=bundler).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/conditionalExportsResolutionFallback(moduleresolution=bundler).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/conditionalExportsResolutionFallback(moduleresolution=bundler).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/conditionalExportsResolutionFallback(moduleresolution=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/conditionalExportsResolutionFallback(moduleresolution=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/conditionalExportsResolutionFallback(moduleresolution=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/conditionalExportsResolutionFallback(moduleresolution=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/conditionalExportsResolutionFallback(moduleresolution=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/conditionalExportsResolutionFallback(moduleresolution=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/conditionalExportsResolutionFallback(moduleresolution=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/conditionalExportsResolutionFallback(moduleresolution=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/conflictingCommonJSES2015Exports.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/conflictingCommonJSES2015Exports.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/conflictingCommonJSES2015Exports.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/conflictingCommonJSES2015Exports.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctionMergeWithClass.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctionMergeWithClass.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctionMergeWithClass.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctionMergeWithClass.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctionMergeWithClass.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctionMergeWithClass.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctionMergeWithClass.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctionMergeWithClass.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctionMethodTypeParameters.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctionMethodTypeParameters.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctionMethodTypeParameters.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctionMethodTypeParameters.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctions.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctions.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctions.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctions.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctions2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctions2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctions2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctions2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctions3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctions3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctions3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctions3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctions3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctionsStrict.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctionsStrict.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctionsStrict.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctionsStrict.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorFunctionsStrict.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctionsStrict.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorFunctionsStrict.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorFunctionsStrict.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorTagOnClassConstructor.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorTagOnClassConstructor.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorTagOnClassConstructor.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorTagOnClassConstructor.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorTagOnNestedBinaryExpression.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorTagOnNestedBinaryExpression.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorTagOnNestedBinaryExpression.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorTagOnNestedBinaryExpression.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorTagOnNestedBinaryExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorTagOnNestedBinaryExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorTagOnNestedBinaryExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorTagOnNestedBinaryExpression.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorTagOnObjectLiteralMethod.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorTagOnObjectLiteralMethod.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorTagOnObjectLiteralMethod.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorTagOnObjectLiteralMethod.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorTagOnObjectLiteralMethod.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorTagOnObjectLiteralMethod.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorTagOnObjectLiteralMethod.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorTagOnObjectLiteralMethod.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/constructorTagWithThisTag.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/constructorTagWithThisTag.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/constructorTagWithThisTag.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/constructorTagWithThisTag.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/contextualThisTypeInJavascript.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/contextualThisTypeInJavascript.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/contextualThisTypeInJavascript.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/contextualThisTypeInJavascript.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/contextualTypeFromJSDoc.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/contextualTypeFromJSDoc.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/contextualTypeFromJSDoc.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/contextualTypeFromJSDoc.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/contextualTypedSpecialAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/contextualTypedSpecialAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/contextualTypedSpecialAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/contextualTypedSpecialAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/contextualTypedSpecialAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/contextualTypedSpecialAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/contextualTypedSpecialAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/contextualTypedSpecialAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/contextuallyTypedStringLiteralsInJsxAttributes01.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/contextuallyTypedStringLiteralsInJsxAttributes01.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/contextuallyTypedStringLiteralsInJsxAttributes01.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/contextuallyTypedStringLiteralsInJsxAttributes01.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/contextuallyTypedStringLiteralsInJsxAttributes01.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/contextuallyTypedStringLiteralsInJsxAttributes01.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/contextuallyTypedStringLiteralsInJsxAttributes01.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/contextuallyTypedStringLiteralsInJsxAttributes01.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/contextuallyTypedStringLiteralsInJsxAttributes02.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/contextuallyTypedStringLiteralsInJsxAttributes02.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/contextuallyTypedStringLiteralsInJsxAttributes02.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/contextuallyTypedStringLiteralsInJsxAttributes02.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/contextuallyTypedStringLiteralsInJsxAttributes02.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/contextuallyTypedStringLiteralsInJsxAttributes02.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/contextuallyTypedStringLiteralsInJsxAttributes02.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/contextuallyTypedStringLiteralsInJsxAttributes02.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/controlFlowOptionalChain3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/controlFlowOptionalChain3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/controlFlowOptionalChain3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/controlFlowOptionalChain3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/controlFlowOptionalChain3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/controlFlowOptionalChain3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/controlFlowOptionalChain3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/controlFlowOptionalChain3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/correctlyMarkAliasAsReferences4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/correctlyMarkAliasAsReferences4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/defaultPropertyAssignedClassWithPrototype.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/defaultPropertyAssignedClassWithPrototype.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/defaultPropertyAssignedClassWithPrototype.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/defaultPropertyAssignedClassWithPrototype.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/defaultPropertyAssignedClassWithPrototype.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/defaultPropertyAssignedClassWithPrototype.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/defaultPropertyAssignedClassWithPrototype.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/defaultPropertyAssignedClassWithPrototype.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumMergeWithExpando.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumMergeWithExpando.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumMergeWithExpando.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumMergeWithExpando.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumMergeWithExpando.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumMergeWithExpando.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumMergeWithExpando.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumMergeWithExpando.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumTag.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumTag.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumTag.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumTag.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumTag.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumTag.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumTag.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumTag.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumTagCircularReference.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumTagCircularReference.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumTagCircularReference.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumTagCircularReference.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumTagImported.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumTagImported.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumTagImported.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumTagImported.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumTagOnExports.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumTagOnExports.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumTagOnExports.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumTagOnExports.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumTagOnExports.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumTagOnExports.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumTagOnExports.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumTagOnExports.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumTagOnExports2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumTagOnExports2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumTagOnExports2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumTagOnExports2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumTagOnExports2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumTagOnExports2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumTagOnExports2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumTagOnExports2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/enumTagUseBeforeDefCrash.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/enumTagUseBeforeDefCrash.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/enumTagUseBeforeDefCrash.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/enumTagUseBeforeDefCrash.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/errorOnFunctionReturnType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/errorOnFunctionReturnType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/errorOnFunctionReturnType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/errorOnFunctionReturnType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/errorOnFunctionReturnType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/errorOnFunctionReturnType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/errorOnFunctionReturnType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/errorOnFunctionReturnType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/esDecorators-classDeclaration-exportModifier.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/esDecorators-classDeclaration-exportModifier.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/esDecorators-classDeclaration-exportModifier.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/esDecorators-classDeclaration-exportModifier.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/expandoOnAlias.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/expandoOnAlias.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/expandoOnAlias.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/expandoOnAlias.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportDefaultInJsFile01.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportDefaultInJsFile01.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportDefaultInJsFile01.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportDefaultInJsFile01.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportDefaultInJsFile02.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportDefaultInJsFile02.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportDefaultInJsFile02.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportDefaultInJsFile02.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportNamespace_js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportNamespace_js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportNamespace_js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportNamespace_js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportNestedNamespaces.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportNestedNamespaces.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportNestedNamespaces.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportNestedNamespaces.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportNestedNamespaces.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportNestedNamespaces.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportNestedNamespaces.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportNestedNamespaces.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportNestedNamespaces2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportNestedNamespaces2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportNestedNamespaces2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportNestedNamespaces2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportNestedNamespaces2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportNestedNamespaces2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportNestedNamespaces2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportNestedNamespaces2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportPropertyAssignmentNameResolution.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportPropertyAssignmentNameResolution.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportPropertyAssignmentNameResolution.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportPropertyAssignmentNameResolution.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportPropertyAssignmentNameResolution.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportPropertyAssignmentNameResolution.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportPropertyAssignmentNameResolution.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportPropertyAssignmentNameResolution.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportSpecifiers_js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportSpecifiers_js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportSpecifiers_js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportSpecifiers_js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportSpecifiers_js.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportSpecifiers_js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportSpecifiers_js.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportSpecifiers_js.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportedAliasedEnumTag.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportedAliasedEnumTag.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportedAliasedEnumTag.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportedAliasedEnumTag.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportedAliasedEnumTag.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportedAliasedEnumTag.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportedAliasedEnumTag.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportedAliasedEnumTag.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/exportedEnumTypeAndValue.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/exportedEnumTypeAndValue.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/exportedEnumTypeAndValue.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/exportedEnumTypeAndValue.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/extendsTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extendsTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extendsTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extendsTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/extendsTag2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extendsTag2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extendsTag2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extendsTag2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/extendsTag4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extendsTag4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extendsTag4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extendsTag4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/extendsTag5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extendsTag5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extendsTag5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extendsTag5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/extendsTag5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extendsTag5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extendsTag5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extendsTag5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/extendsTagEmit.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extendsTagEmit.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extendsTagEmit.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extendsTagEmit.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/extendsTagEmit.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extendsTagEmit.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extendsTagEmit.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extendsTagEmit.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/extensionLoadingPriority(moduleresolution=bundler).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extensionLoadingPriority(moduleresolution=bundler).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extensionLoadingPriority(moduleresolution=bundler).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extensionLoadingPriority(moduleresolution=bundler).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/extensionLoadingPriority(moduleresolution=node).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extensionLoadingPriority(moduleresolution=node).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extensionLoadingPriority(moduleresolution=node).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extensionLoadingPriority(moduleresolution=node).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/extensionLoadingPriority(moduleresolution=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extensionLoadingPriority(moduleresolution=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extensionLoadingPriority(moduleresolution=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extensionLoadingPriority(moduleresolution=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/extensionLoadingPriority(moduleresolution=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/extensionLoadingPriority(moduleresolution=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/extensionLoadingPriority(moduleresolution=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/extensionLoadingPriority(moduleresolution=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/genericSetterInClassTypeJsDoc.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/genericSetterInClassTypeJsDoc.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/genericSetterInClassTypeJsDoc.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/genericSetterInClassTypeJsDoc.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/globalMergeWithCommonJSAssignmentDeclaration.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/globalMergeWithCommonJSAssignmentDeclaration.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/globalMergeWithCommonJSAssignmentDeclaration.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/globalMergeWithCommonJSAssignmentDeclaration.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/globalMergeWithCommonJSAssignmentDeclaration.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/globalMergeWithCommonJSAssignmentDeclaration.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/globalMergeWithCommonJSAssignmentDeclaration.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/globalMergeWithCommonJSAssignmentDeclaration.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/globalThisCollision.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/globalThisCollision.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/globalThisCollision.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/globalThisCollision.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/globalThisPropertyAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/globalThisPropertyAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/globalThisPropertyAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/globalThisPropertyAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/grammarErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/grammarErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/grammarErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/grammarErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importAliasModuleExports.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importAliasModuleExports.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importAliasModuleExports.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importAliasModuleExports.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importAliasModuleExports.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importAliasModuleExports.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importAliasModuleExports.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importAliasModuleExports.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importSpecifiers_js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importSpecifiers_js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importSpecifiers_js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importSpecifiers_js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importSpecifiers_js.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importSpecifiers_js.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importSpecifiers_js.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importSpecifiers_js.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag10.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag10.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag10.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag10.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag11.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag11.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag11.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag11.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag12.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag12.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag12.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag12.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag13.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag13.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag13.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag13.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag14.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag14.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag14.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag14.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag15(module=es2015).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag15(module=es2015).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag15(module=es2015).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag15(module=es2015).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag15(module=es2015).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag15(module=es2015).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag15(module=es2015).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag15(module=es2015).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag15(module=esnext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag15(module=esnext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag15(module=esnext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag15(module=esnext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag15(module=esnext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag15(module=esnext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag15(module=esnext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag15(module=esnext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag16.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag16.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag16.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag16.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag17.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag17.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag17.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag17.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag17.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag17.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag17.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag17.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag18.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag18.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag18.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag18.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag19.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag19.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag19.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag19.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag20.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag20.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag20.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag20.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTag9.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTag9.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTag9.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTag9.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importTypeInJSDoc.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importTypeInJSDoc.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importTypeInJSDoc.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importTypeInJSDoc.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/importingExportingTypes.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importingExportingTypes.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importingExportingTypes.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importingExportingTypes.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/importingExportingTypes.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/importingExportingTypes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/importingExportingTypes.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/importingExportingTypes.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferThis.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferThis.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferThis.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferThis.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferingFromAny.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferingFromAny.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferingFromAny.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferingFromAny.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferingFromAny.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferingFromAny.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferingFromAny.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferingFromAny.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassMembersFromAssignments7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassMembersFromAssignments7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassStaticMembersFromAssignments.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassStaticMembersFromAssignments.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassStaticMembersFromAssignments.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassStaticMembersFromAssignments.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inferringClassStaticMembersFromAssignments.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inferringClassStaticMembersFromAssignments.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inferringClassStaticMembersFromAssignments.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inferringClassStaticMembersFromAssignments.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxAndJsxFragPragma.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxAndJsxFragPragma.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxAndJsxFragPragma.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxAndJsxFragPragma.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxAndJsxFragPragma.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxAndJsxFragPragma.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxAndJsxFragPragma.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxAndJsxFragPragma.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxAndJsxFragPragmaOverridesCompilerOptions.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxAndJsxFragPragmaOverridesCompilerOptions.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxAndJsxFragPragmaOverridesCompilerOptions.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxAndJsxFragPragmaOverridesCompilerOptions.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxFactoryDeclarations.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryDeclarations.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxFactoryDeclarations.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryDeclarations.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxFactoryDeclarationsLocalTypes.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryDeclarationsLocalTypes.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxFactoryDeclarationsLocalTypes.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryDeclarationsLocalTypes.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxFactoryDeclarationsLocalTypes.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryDeclarationsLocalTypes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxFactoryDeclarationsLocalTypes.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryDeclarationsLocalTypes.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxFactoryLocalTypeGlobalFallback.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryLocalTypeGlobalFallback.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxFactoryLocalTypeGlobalFallback.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryLocalTypeGlobalFallback.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxFactoryLocalTypeGlobalFallback.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryLocalTypeGlobalFallback.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxFactoryLocalTypeGlobalFallback.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryLocalTypeGlobalFallback.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxFactoryOverridesCompilerOption.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryOverridesCompilerOption.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxFactoryOverridesCompilerOption.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryOverridesCompilerOption.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxFactoryWithFragmentIsError.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryWithFragmentIsError.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxFactoryWithFragmentIsError.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryWithFragmentIsError.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/inlineJsxFactoryWithFragmentIsError.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryWithFragmentIsError.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/inlineJsxFactoryWithFragmentIsError.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/inlineJsxFactoryWithFragmentIsError.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/instantiateTemplateTagTypeParameterOnVariableStatement.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/instantiateTemplateTagTypeParameterOnVariableStatement.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/instantiateTemplateTagTypeParameterOnVariableStatement.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/instantiateTemplateTagTypeParameterOnVariableStatement.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/intraExpressionInferencesJsx.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/intraExpressionInferencesJsx.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/intraExpressionInferencesJsx.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/intraExpressionInferencesJsx.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsContainerMergeJsContainer.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeJsContainer.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsContainerMergeJsContainer.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeJsContainer.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsContainerMergeJsContainer.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeJsContainer.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsContainerMergeJsContainer.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeJsContainer.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsContainerMergeTsDeclaration3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsContainerMergeTsDeclaration3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassAccessor.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassAccessor.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassAccessor.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassAccessor.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassExtendsVisibility.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassExtendsVisibility.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassExtendsVisibility.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassExtendsVisibility.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassExtendsVisibility.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassExtendsVisibility.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassExtendsVisibility.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassExtendsVisibility.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassImplementsGenericsSerialization.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassImplementsGenericsSerialization.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassImplementsGenericsSerialization.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassImplementsGenericsSerialization.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassLikeHeuristic.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassLikeHeuristic.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassLikeHeuristic.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassLikeHeuristic.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassLikeHeuristic.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassLikeHeuristic.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassLikeHeuristic.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassLikeHeuristic.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassMethod.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassMethod.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassMethod.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassMethod.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassMethod.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassMethod.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassMethod.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassMethod.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassStatic.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassStatic.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassStatic.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassStatic.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassStatic.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassStatic.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassStatic.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassStatic.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassStaticMethodAugmentation.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassStaticMethodAugmentation.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassStaticMethodAugmentation.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassStaticMethodAugmentation.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassStaticMethodAugmentation.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassStaticMethodAugmentation.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassStaticMethodAugmentation.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassStaticMethodAugmentation.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClasses.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClasses.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClasses.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClasses.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClasses.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClasses.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClasses.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClasses.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassesErr.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassesErr.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassesErr.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassesErr.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsClassesErr.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassesErr.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsClassesErr.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsClassesErr.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsCommonjsRelativePath.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsCommonjsRelativePath.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsCommonjsRelativePath.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsCommonjsRelativePath.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsCommonjsRelativePath.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsCommonjsRelativePath.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsCommonjsRelativePath.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsCommonjsRelativePath.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsComputedNames.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsComputedNames.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsComputedNames.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsComputedNames.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsComputedNames.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsComputedNames.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsComputedNames.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsComputedNames.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsCrossfileMerge.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsCrossfileMerge.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsCrossfileMerge.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsCrossfileMerge.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsCrossfileMerge.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsCrossfileMerge.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsCrossfileMerge.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsCrossfileMerge.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsDefault.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDefault.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsDefault.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDefault.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsDefaultsErr.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDefaultsErr.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsDefaultsErr.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDefaultsErr.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsDefaultsErr.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDefaultsErr.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsDefaultsErr.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDefaultsErr.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsDocCommentsOnConsts.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDocCommentsOnConsts.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsDocCommentsOnConsts.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDocCommentsOnConsts.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsDocCommentsOnConsts.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDocCommentsOnConsts.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsDocCommentsOnConsts.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDocCommentsOnConsts.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsEnumTag.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsEnumTag.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsEnumTag.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsEnumTag.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsEnums.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsEnums.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsEnums.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsEnums.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsEnums.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsEnums.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsEnums.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsEnums.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpression.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpression.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpression.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpression.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpression.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionAnonymous.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionAnonymous.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionAnonymous.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionAnonymous.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionAnonymous.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionAnonymous.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionAnonymous.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionAnonymous.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionShadowing.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionShadowing.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionShadowing.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionShadowing.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionShadowing.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionShadowing.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassExpressionShadowing.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassExpressionShadowing.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedClassInstance3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedClassInstance3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedConstructorFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedConstructorFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedConstructorFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedConstructorFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedConstructorFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedConstructorFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedConstructorFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedConstructorFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedConstructorFunctionWithSub.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedConstructorFunctionWithSub.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedConstructorFunctionWithSub.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedConstructorFunctionWithSub.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedConstructorFunctionWithSub.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedConstructorFunctionWithSub.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedConstructorFunctionWithSub.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedConstructorFunctionWithSub.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedVisibility.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedVisibility.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedVisibility.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedVisibility.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedVisibility.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedVisibility.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignedVisibility.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignedVisibility.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignmentExpressionPlusSecondary.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignmentExpressionPlusSecondary.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignmentExpressionPlusSecondary.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignmentExpressionPlusSecondary.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignmentExpressionPlusSecondary.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignmentExpressionPlusSecondary.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignmentExpressionPlusSecondary.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignmentExpressionPlusSecondary.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignmentWithKeywordName.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignmentWithKeywordName.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignmentWithKeywordName.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignmentWithKeywordName.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignmentWithKeywordName.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignmentWithKeywordName.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportAssignmentWithKeywordName.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportAssignmentWithKeywordName.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportDefinePropertyEmit.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportDefinePropertyEmit.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportDefinePropertyEmit.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportDefinePropertyEmit.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportDefinePropertyEmit.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportDefinePropertyEmit.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportDefinePropertyEmit.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportDefinePropertyEmit.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportDoubleAssignmentInClosure.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportDoubleAssignmentInClosure.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportDoubleAssignmentInClosure.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportDoubleAssignmentInClosure.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportDoubleAssignmentInClosure.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportDoubleAssignmentInClosure.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportDoubleAssignmentInClosure.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportDoubleAssignmentInClosure.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportForms.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportForms.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportForms.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportForms.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportForms.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportForms.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportForms.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportForms.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportFormsErr.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportFormsErr.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportFormsErr.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportFormsErr.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportFormsErr.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportFormsErr.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportFormsErr.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportFormsErr.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportSpecifierNonlocal.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportSpecifierNonlocal.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportSpecifierNonlocal.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportSpecifierNonlocal.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportSubAssignments.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportSubAssignments.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportSubAssignments.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportSubAssignments.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportSubAssignments.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportSubAssignments.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportSubAssignments.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportSubAssignments.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportedClassAliases.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportedClassAliases.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportedClassAliases.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportedClassAliases.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsExportedClassAliases.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportedClassAliases.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsExportedClassAliases.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsExportedClassAliases.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionClassesCjsExportAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionClassesCjsExportAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionClassesCjsExportAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionClassesCjsExportAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionClassesCjsExportAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionClassesCjsExportAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionClassesCjsExportAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionClassesCjsExportAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionJSDoc.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionJSDoc.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionJSDoc.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionJSDoc.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionJSDoc.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionJSDoc.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionJSDoc.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionJSDoc.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionKeywordProp.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionKeywordProp.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionKeywordProp.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionKeywordProp.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionKeywordPropExhaustive.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionKeywordPropExhaustive.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionKeywordPropExhaustive.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionKeywordPropExhaustive.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionLikeClasses.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionLikeClasses.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionLikeClasses.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionLikeClasses.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionLikeClasses.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionLikeClasses.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionLikeClasses.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionLikeClasses.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionLikeClasses2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionLikeClasses2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionLikeClasses2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionLikeClasses2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionLikeClasses2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionLikeClasses2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionLikeClasses2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionLikeClasses2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionPrototypeStatic.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionPrototypeStatic.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionPrototypeStatic.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionPrototypeStatic.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionPrototypeStatic.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionPrototypeStatic.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionPrototypeStatic.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionPrototypeStatic.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionWithDefaultAssignedMember.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionWithDefaultAssignedMember.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionWithDefaultAssignedMember.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionWithDefaultAssignedMember.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionWithDefaultAssignedMember.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionWithDefaultAssignedMember.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionWithDefaultAssignedMember.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionWithDefaultAssignedMember.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctions.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctions.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctions.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctions.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionsCjs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionsCjs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionsCjs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionsCjs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionsCjs.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionsCjs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsFunctionsCjs.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsFunctionsCjs.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsGetterSetter.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsGetterSetter.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsGetterSetter.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsGetterSetter.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsImportAliasExposedWithinNamespace.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportAliasExposedWithinNamespace.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsImportAliasExposedWithinNamespace.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportAliasExposedWithinNamespace.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsImportAliasExposedWithinNamespace.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportAliasExposedWithinNamespace.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsImportAliasExposedWithinNamespace.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportAliasExposedWithinNamespace.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsImportAliasExposedWithinNamespaceCjs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportAliasExposedWithinNamespaceCjs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsImportAliasExposedWithinNamespaceCjs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportAliasExposedWithinNamespaceCjs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsImportAliasExposedWithinNamespaceCjs.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportAliasExposedWithinNamespaceCjs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsImportAliasExposedWithinNamespaceCjs.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportAliasExposedWithinNamespaceCjs.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsImportNamespacedType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportNamespacedType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsImportNamespacedType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportNamespacedType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsImportTypeBundled.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportTypeBundled.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsImportTypeBundled.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportTypeBundled.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsImportTypeBundled.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportTypeBundled.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsImportTypeBundled.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsImportTypeBundled.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsInterfaces.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsInterfaces.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsInterfaces.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsInterfaces.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsInterfaces.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsInterfaces.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsInterfaces.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsInterfaces.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsJSDocRedirectedLookups.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsJSDocRedirectedLookups.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsJSDocRedirectedLookups.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsJSDocRedirectedLookups.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsJson.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsJson.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsJson.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsJson.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsJson.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsJson.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsJson.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsJson.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsMissingGenerics.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsMissingGenerics.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsMissingGenerics.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsMissingGenerics.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsMissingTypeParameters.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsMissingTypeParameters.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsMissingTypeParameters.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsMissingTypeParameters.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsModuleReferenceHasEmit.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsModuleReferenceHasEmit.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsModuleReferenceHasEmit.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsModuleReferenceHasEmit.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsNestedParams.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsNestedParams.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsNestedParams.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsNestedParams.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsNonIdentifierInferredNames.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsNonIdentifierInferredNames.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsNonIdentifierInferredNames.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsNonIdentifierInferredNames.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsNonIdentifierInferredNames.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsNonIdentifierInferredNames.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsNonIdentifierInferredNames.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsNonIdentifierInferredNames.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsOptionalTypeLiteralProps1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsOptionalTypeLiteralProps1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsOptionalTypeLiteralProps1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsOptionalTypeLiteralProps1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsOptionalTypeLiteralProps2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsOptionalTypeLiteralProps2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsOptionalTypeLiteralProps2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsOptionalTypeLiteralProps2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsOptionalTypeLiteralProps2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsOptionalTypeLiteralProps2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsOptionalTypeLiteralProps2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsOptionalTypeLiteralProps2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsPackageJson.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsPackageJson.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsPackageJson.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsPackageJson.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsPackageJson.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsPackageJson.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsPackageJson.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsPackageJson.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsParameterTagReusesInputNodeInEmit2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReactComponents.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReactComponents.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReactComponents.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReactComponents.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReactComponents.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReactComponents.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReactComponents.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReactComponents.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReexportAliases.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReexportAliases.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReexportAliases.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReexportAliases.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReexportAliasesEsModuleInterop.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReexportAliasesEsModuleInterop.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReexportAliasesEsModuleInterop.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReexportAliasesEsModuleInterop.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReexportAliasesEsModuleInterop.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReexportAliasesEsModuleInterop.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReexportAliasesEsModuleInterop.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReexportAliasesEsModuleInterop.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReexportedCjsAlias.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReexportedCjsAlias.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReexportedCjsAlias.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReexportedCjsAlias.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReexportedCjsAlias.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReexportedCjsAlias.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReexportedCjsAlias.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReexportedCjsAlias.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReferenceToClassInstanceCrossFile.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReferenceToClassInstanceCrossFile.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReferenceToClassInstanceCrossFile.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReferenceToClassInstanceCrossFile.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReferenceToClassInstanceCrossFile.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReferenceToClassInstanceCrossFile.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReferenceToClassInstanceCrossFile.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReferenceToClassInstanceCrossFile.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsRestArgsWithThisTypeInJSDocFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsRestArgsWithThisTypeInJSDocFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsRestArgsWithThisTypeInJSDocFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsRestArgsWithThisTypeInJSDocFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReusesExistingNodesMappingJSDocTypes.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReusesExistingNodesMappingJSDocTypes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReusesExistingNodesMappingJSDocTypes.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReusesExistingNodesMappingJSDocTypes.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReusesExistingTypeAnnotations.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReusesExistingTypeAnnotations.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReusesExistingTypeAnnotations.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReusesExistingTypeAnnotations.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsReusesExistingTypeAnnotations.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReusesExistingTypeAnnotations.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsReusesExistingTypeAnnotations.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsReusesExistingTypeAnnotations.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsSubclassWithExplicitNoArgumentConstructor.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsSubclassWithExplicitNoArgumentConstructor.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsSubclassWithExplicitNoArgumentConstructor.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsSubclassWithExplicitNoArgumentConstructor.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsThisTypes.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsThisTypes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsThisTypes.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsThisTypes.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeAliases.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeAliases.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeAliases.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeAliases.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeAliases.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeAliases.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeAliases.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeAliases.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReassignmentFromDeclaration.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReassignmentFromDeclaration.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReassignmentFromDeclaration.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReassignmentFromDeclaration.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReassignmentFromDeclaration.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReassignmentFromDeclaration.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReassignmentFromDeclaration.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReassignmentFromDeclaration.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReassignmentFromDeclaration2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReassignmentFromDeclaration2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReassignmentFromDeclaration2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReassignmentFromDeclaration2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReassignmentFromDeclaration2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReassignmentFromDeclaration2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReassignmentFromDeclaration2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReassignmentFromDeclaration2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypeReferences4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypeReferences4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefAndImportTypes.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefAndImportTypes.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefAndImportTypes.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefAndImportTypes.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefAndImportTypes.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefAndImportTypes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefAndImportTypes.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefAndImportTypes.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefAndLatebound.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefAndLatebound.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefAndLatebound.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefAndLatebound.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefAndLatebound.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefAndLatebound.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefAndLatebound.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefAndLatebound.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefPropertyAndExportAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefPropertyAndExportAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefPropertyAndExportAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefPropertyAndExportAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefPropertyAndExportAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefPropertyAndExportAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsTypedefPropertyAndExportAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsTypedefPropertyAndExportAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsDeclarationsUniqueSymbolUsage.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsUniqueSymbolUsage.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsDeclarationsUniqueSymbolUsage.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsUniqueSymbolUsage.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsObjectsMarkedAsOpenEnded.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsObjectsMarkedAsOpenEnded.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsObjectsMarkedAsOpenEnded.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsObjectsMarkedAsOpenEnded.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsObjectsMarkedAsOpenEnded.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsObjectsMarkedAsOpenEnded.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsObjectsMarkedAsOpenEnded.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsObjectsMarkedAsOpenEnded.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAccessibilityTags.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAccessibilityTags.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAccessibilityTags.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAccessibilityTags.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAccessibilityTags.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAccessibilityTags.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAccessibilityTags.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAccessibilityTags.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAccessibilityTagsDeclarations.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAccessibilityTagsDeclarations.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAccessibilityTagsDeclarations.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAccessibilityTagsDeclarations.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAugmentsMissingType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugmentsMissingType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAugmentsMissingType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugmentsMissingType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAugmentsMissingType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugmentsMissingType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAugmentsMissingType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugmentsMissingType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAugments_errorInExtendsExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_errorInExtendsExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAugments_errorInExtendsExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_errorInExtendsExpression.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAugments_nameMismatch.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_nameMismatch.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAugments_nameMismatch.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_nameMismatch.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAugments_nameMismatch.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_nameMismatch.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAugments_nameMismatch.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_nameMismatch.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAugments_noExtends.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_noExtends.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAugments_noExtends.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_noExtends.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAugments_notAClass.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_notAClass.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAugments_notAClass.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_notAClass.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAugments_qualifiedName.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_qualifiedName.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAugments_qualifiedName.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_qualifiedName.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAugments_withTypeParameter.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_withTypeParameter.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAugments_withTypeParameter.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_withTypeParameter.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocAugments_withTypeParameter.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_withTypeParameter.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocAugments_withTypeParameter.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocAugments_withTypeParameter.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocBindingInUnreachableCode.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocBindingInUnreachableCode.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocBindingInUnreachableCode.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocBindingInUnreachableCode.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocCatchClauseWithTypeAnnotation.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocCatchClauseWithTypeAnnotation.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocCatchClauseWithTypeAnnotation.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocCatchClauseWithTypeAnnotation.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocCatchClauseWithTypeAnnotation.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocCatchClauseWithTypeAnnotation.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocCatchClauseWithTypeAnnotation.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocCatchClauseWithTypeAnnotation.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocConstructorFunctionTypeReference.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocConstructorFunctionTypeReference.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocConstructorFunctionTypeReference.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocConstructorFunctionTypeReference.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocConstructorFunctionTypeReference.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocConstructorFunctionTypeReference.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocConstructorFunctionTypeReference.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocConstructorFunctionTypeReference.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocFunctionType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocFunctionType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocFunctionType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocFunctionType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocFunctionType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocFunctionType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocFunctionType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocFunctionType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocFunction_missingReturn.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocFunction_missingReturn.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocFunction_missingReturn.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocFunction_missingReturn.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocFunction_missingReturn.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocFunction_missingReturn.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocFunction_missingReturn.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocFunction_missingReturn.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_class.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_class.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_class.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_class.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_class.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_class.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_class.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_class.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_interface.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_interface.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_interface.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_interface.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_interface.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_interface.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_interface.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_interface.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_interface_multiple.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_interface_multiple.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_interface_multiple.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_interface_multiple.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_interface_multiple.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_interface_multiple.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_interface_multiple.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_interface_multiple.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_missingType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_missingType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_missingType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_missingType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_namespacedInterface.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_namespacedInterface.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_namespacedInterface.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_namespacedInterface.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_properties.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_properties.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_properties.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_properties.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_signatures.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_signatures.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_signatures.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_signatures.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImplements_signatures.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_signatures.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImplements_signatures.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImplements_signatures.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImportType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImportType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImportType2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportType2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImportType2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportType2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImportTypeReferenceToClassAlias.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportTypeReferenceToClassAlias.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImportTypeReferenceToClassAlias.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportTypeReferenceToClassAlias.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImportTypeReferenceToClassAlias.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportTypeReferenceToClassAlias.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImportTypeReferenceToClassAlias.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportTypeReferenceToClassAlias.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImportTypeReferenceToCommonjsModule.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportTypeReferenceToCommonjsModule.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImportTypeReferenceToCommonjsModule.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportTypeReferenceToCommonjsModule.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImportTypeReferenceToESModule.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportTypeReferenceToESModule.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImportTypeReferenceToESModule.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportTypeReferenceToESModule.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocImportTypeReferenceToStringLiteral.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportTypeReferenceToStringLiteral.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocImportTypeReferenceToStringLiteral.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocImportTypeReferenceToStringLiteral.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocIndexSignature.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocIndexSignature.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocIndexSignature.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocIndexSignature.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocIndexSignature.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocIndexSignature.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocIndexSignature.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocIndexSignature.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocLiteral.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocLiteral.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocLiteral.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocLiteral.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocNeverUndefinedNull.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocNeverUndefinedNull.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocNeverUndefinedNull.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocNeverUndefinedNull.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocOuterTypeParameters1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocOuterTypeParameters1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocOuterTypeParameters1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocOuterTypeParameters1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocOuterTypeParameters1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocOuterTypeParameters1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocOuterTypeParameters1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocOuterTypeParameters1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocOuterTypeParameters2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocOuterTypeParameters2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocOuterTypeParameters2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocOuterTypeParameters2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocOuterTypeParameters2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocOuterTypeParameters2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocOuterTypeParameters2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocOuterTypeParameters2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocOuterTypeParameters3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocOuterTypeParameters3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocOuterTypeParameters3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocOuterTypeParameters3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocOverrideTag1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocOverrideTag1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocOverrideTag1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocOverrideTag1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocOverrideTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocOverrideTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocOverrideTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocOverrideTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParamTag2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParamTag2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParamTag2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParamTag2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParamTag2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParamTag2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParamTag2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParamTag2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParamTagTypeLiteral.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParamTagTypeLiteral.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParamTagTypeLiteral.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParamTagTypeLiteral.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParamTagTypeLiteral.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParamTagTypeLiteral.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParamTagTypeLiteral.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParamTagTypeLiteral.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseBackquotedParamName.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseBackquotedParamName.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseBackquotedParamName.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseBackquotedParamName.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseBackquotedParamName.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseBackquotedParamName.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseBackquotedParamName.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseBackquotedParamName.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseDotDotDotInJSDocFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseDotDotDotInJSDocFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseDotDotDotInJSDocFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseDotDotDotInJSDocFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseDotDotDotInJSDocFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseDotDotDotInJSDocFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseDotDotDotInJSDocFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseDotDotDotInJSDocFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseHigherOrderFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseHigherOrderFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseHigherOrderFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseHigherOrderFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseHigherOrderFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseHigherOrderFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseHigherOrderFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseHigherOrderFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseMatchingBackticks.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseMatchingBackticks.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseMatchingBackticks.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseMatchingBackticks.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseMatchingBackticks.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseMatchingBackticks.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseMatchingBackticks.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseMatchingBackticks.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseParenthesizedJSDocParameter.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseParenthesizedJSDocParameter.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseParenthesizedJSDocParameter.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseParenthesizedJSDocParameter.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseParenthesizedJSDocParameter.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseParenthesizedJSDocParameter.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseParenthesizedJSDocParameter.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseParenthesizedJSDocParameter.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseStarEquals.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseStarEquals.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseStarEquals.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseStarEquals.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocParseStarEquals.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseStarEquals.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocParseStarEquals.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocParseStarEquals.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocPostfixEqualsAddsOptionality.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocPostfixEqualsAddsOptionality.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocPostfixEqualsAddsOptionality.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocPostfixEqualsAddsOptionality.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocPostfixEqualsAddsOptionality.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocPostfixEqualsAddsOptionality.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocPostfixEqualsAddsOptionality.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocPostfixEqualsAddsOptionality.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocPrefixPostfixParsing.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrefixPostfixParsing.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocPrefixPostfixParsing.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrefixPostfixParsing.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocPrefixPostfixParsing.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrefixPostfixParsing.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocPrefixPostfixParsing.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrefixPostfixParsing.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocPrivateName1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrivateName1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocPrivateName1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrivateName1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocPrivateName1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrivateName1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocPrivateName1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrivateName1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocPrivateName2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrivateName2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocPrivateName2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrivateName2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocPrototypePropertyAccessWithType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrototypePropertyAccessWithType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocPrototypePropertyAccessWithType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrototypePropertyAccessWithType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocPrototypePropertyAccessWithType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrototypePropertyAccessWithType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocPrototypePropertyAccessWithType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocPrototypePropertyAccessWithType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocReadonly.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocReadonly.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocReadonly.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocReadonly.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocReadonly.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocReadonly.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocReadonly.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocReadonly.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocReadonlyDeclarations.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocReadonlyDeclarations.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocReadonlyDeclarations.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocReadonlyDeclarations.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocReadonlyDeclarations.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocReadonlyDeclarations.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocReadonlyDeclarations.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocReadonlyDeclarations.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocReturnTag1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocReturnTag1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocReturnTag1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocReturnTag1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocReturnTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocReturnTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocReturnTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocReturnTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocSignatureOnReturnedFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocSignatureOnReturnedFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocSignatureOnReturnedFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocSignatureOnReturnedFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocSignatureOnReturnedFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocSignatureOnReturnedFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocSignatureOnReturnedFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocSignatureOnReturnedFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateClass.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateClass.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateClass.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateClass.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateClass.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateClass.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateClass.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateClass.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateConstructorFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateConstructorFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateConstructorFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateConstructorFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateConstructorFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateConstructorFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateConstructorFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateConstructorFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateConstructorFunction2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateConstructorFunction2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateConstructorFunction2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateConstructorFunction2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateConstructorFunction2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateConstructorFunction2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateConstructorFunction2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateConstructorFunction2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag8.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag8.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag8.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag8.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTag8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTag8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTag8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTagDefault.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTagDefault.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTagDefault.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTagDefault.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTagDefault.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTagDefault.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTagDefault.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTagDefault.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTagNameResolution.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTagNameResolution.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTagNameResolution.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTagNameResolution.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTemplateTagNameResolution.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTagNameResolution.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTemplateTagNameResolution.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTemplateTagNameResolution.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocThisType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocThisType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocThisType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocThisType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocThisType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocThisType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocThisType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocThisType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeDefAtStartOfFile.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeDefAtStartOfFile.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeDefAtStartOfFile.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeDefAtStartOfFile.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeFromChainedAssignment3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeFromChainedAssignment3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceExports.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceExports.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceExports.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceExports.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceExports.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceExports.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceExports.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceExports.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImport.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImport.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImport.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImport.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImport.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImport.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImport.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImport.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImportOfClassExpression.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImportOfClassExpression.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImportOfClassExpression.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImportOfClassExpression.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImportOfClassExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImportOfClassExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImportOfClassExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImportOfClassExpression.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImportOfFunctionExpression.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImportOfFunctionExpression.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImportOfFunctionExpression.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImportOfFunctionExpression.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImportOfFunctionExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImportOfFunctionExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToImportOfFunctionExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToImportOfFunctionExpression.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToMergedClass.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToMergedClass.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToMergedClass.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToMergedClass.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToMergedClass.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToMergedClass.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToMergedClass.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToMergedClass.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToValue.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToValue.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceToValue.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceToValue.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceUseBeforeDef.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceUseBeforeDef.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeReferenceUseBeforeDef.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeReferenceUseBeforeDef.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeTag.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTag.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeTag.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTag.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeTag.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTag.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeTag.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTag.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeTagCast.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagCast.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeTagCast.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagCast.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeTagCast.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagCast.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeTagCast.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagCast.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeTagParameterType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagParameterType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeTagParameterType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagParameterType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeTagParameterType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagParameterType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeTagParameterType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagParameterType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeTagRequiredParameters.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagRequiredParameters.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeTagRequiredParameters.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagRequiredParameters.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocTypeTagRequiredParameters.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagRequiredParameters.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocTypeTagRequiredParameters.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocTypeTagRequiredParameters.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocVariableDeclarationWithTypeAnnotation.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocVariableDeclarationWithTypeAnnotation.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocVariableDeclarationWithTypeAnnotation.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocVariableDeclarationWithTypeAnnotation.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsdocVariadicType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsdocVariadicType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsdocVariadicType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsdocVariadicType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxAndTypeAssertion.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxAndTypeAssertion.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxAndTypeAssertion.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxAndTypeAssertion.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxAttributeInitializer(jsx=preserve).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxAttributeInitializer(jsx=preserve).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxAttributeInitializer(jsx=preserve).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxAttributeInitializer(jsx=preserve).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxAttributeInitializer(jsx=react).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxAttributeInitializer(jsx=react).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxAttributeInitializer(jsx=react).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxAttributeInitializer(jsx=react).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxCheckJsxNoTypeArgumentsAllowed.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxCheckJsxNoTypeArgumentsAllowed.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxCheckJsxNoTypeArgumentsAllowed.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxCheckJsxNoTypeArgumentsAllowed.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxCheckJsxNoTypeArgumentsAllowed.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxCheckJsxNoTypeArgumentsAllowed.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxCheckJsxNoTypeArgumentsAllowed.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxCheckJsxNoTypeArgumentsAllowed.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxEsprimaFbTestSuite.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxEsprimaFbTestSuite.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxEsprimaFbTestSuite.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxEsprimaFbTestSuite.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxInvalidEsprimaTestSuite.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxInvalidEsprimaTestSuite.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxInvalidEsprimaTestSuite.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxInvalidEsprimaTestSuite.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxInvalidEsprimaTestSuite.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxInvalidEsprimaTestSuite.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxInvalidEsprimaTestSuite.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxInvalidEsprimaTestSuite.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformChildren(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformChildren(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformChildren(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformChildren(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformChildren(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformChildren(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformChildren(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformChildren(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsx).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsx).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsx).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsx).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImport(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformCustomImportPragma(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyProp(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyProp(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyProp(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyProp(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyProp(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyProp(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyProp(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyProp(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImport(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformSubstitutesNames(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxJsxsCjsTransformSubstitutesNamesFragment(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxParsingError1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxParsingError1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxParsingError1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxParsingError1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxParsingError2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxParsingError2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxParsingError3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxParsingError3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxParsingError4(strict=false).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError4(strict=false).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxParsingError4(strict=false).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError4(strict=false).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxParsingError4(strict=true).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError4(strict=true).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxParsingError4(strict=true).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingError4(strict=true).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxParsingErrorImmediateSpreadInAttributeValue.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingErrorImmediateSpreadInAttributeValue.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxParsingErrorImmediateSpreadInAttributeValue.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxParsingErrorImmediateSpreadInAttributeValue.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxReactTestSuite.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxReactTestSuite.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxReactTestSuite.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxReactTestSuite.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxSpreadOverwritesAttributeStrict.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxSpreadOverwritesAttributeStrict.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxSpreadOverwritesAttributeStrict.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxSpreadOverwritesAttributeStrict.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxSpreadOverwritesAttributeStrict.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxSpreadOverwritesAttributeStrict.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxSpreadOverwritesAttributeStrict.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxSpreadOverwritesAttributeStrict.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxUnclosedParserRecovery.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxUnclosedParserRecovery.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxUnclosedParserRecovery.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxUnclosedParserRecovery.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/jsxUnclosedParserRecovery.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/jsxUnclosedParserRecovery.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/jsxUnclosedParserRecovery.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/jsxUnclosedParserRecovery.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundAssignmentDeclarationSupport7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundAssignmentDeclarationSupport7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/lateBoundClassMemberAssignmentJS3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/lateBoundClassMemberAssignmentJS3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/linkTagEmit1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/linkTagEmit1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/linkTagEmit1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/linkTagEmit1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/malformedTags.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/malformedTags.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/malformedTags.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/malformedTags.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/methodsReturningThis.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/methodsReturningThis.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/methodsReturningThis.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/methodsReturningThis.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAlias.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAlias.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAlias.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAlias.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAlias2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAlias2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAlias3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAlias3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAlias3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAlias3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAlias4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAlias4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAlias4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAlias4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAlias5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAlias5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAlias5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAlias5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAlias5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAliasElementAccessExpression.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasElementAccessExpression.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAliasElementAccessExpression.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasElementAccessExpression.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAliasElementAccessExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasElementAccessExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAliasElementAccessExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasElementAccessExpression.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAliasExports.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasExports.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAliasExports.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasExports.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAliasExports.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasExports.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAliasExports.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasExports.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAliasImported.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasImported.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAliasImported.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasImported.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAliasImported.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasImported.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAliasImported.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasImported.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAliasUnknown.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasUnknown.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAliasUnknown.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasUnknown.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAliasUnknown.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasUnknown.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAliasUnknown.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAliasUnknown.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportAssignment7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportAssignment7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportAssignment7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportDuplicateAlias3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportDuplicateAlias3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportNestedNamespaces.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportNestedNamespaces.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportNestedNamespaces.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportNestedNamespaces.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportNestedNamespaces.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportNestedNamespaces.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportNestedNamespaces.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportNestedNamespaces.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportPropertyAssignmentDefault.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportPropertyAssignmentDefault.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportPropertyAssignmentDefault.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportPropertyAssignmentDefault.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportPropertyAssignmentDefault.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportPropertyAssignmentDefault.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportPropertyAssignmentDefault.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportPropertyAssignmentDefault.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportWithExportPropertyAssignment4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportWithExportPropertyAssignment4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportsAliasLoop1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsAliasLoop1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportsAliasLoop1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsAliasLoop1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportsAliasLoop1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsAliasLoop1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportsAliasLoop1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsAliasLoop1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportsAliasLoop2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsAliasLoop2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportsAliasLoop2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsAliasLoop2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportsAliasLoop2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsAliasLoop2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportsAliasLoop2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsAliasLoop2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportsElementAccessAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsElementAccessAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportsElementAccessAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsElementAccessAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportsElementAccessAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsElementAccessAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportsElementAccessAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsElementAccessAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportsElementAccessAssignment2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsElementAccessAssignment2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportsElementAccessAssignment2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsElementAccessAssignment2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleExportsElementAccessAssignment2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsElementAccessAssignment2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleExportsElementAccessAssignment2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleExportsElementAccessAssignment2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleResolutionWithoutExtension3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleResolutionWithoutExtension3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleResolutionWithoutExtension3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleResolutionWithoutExtension3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleResolutionWithoutExtension3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleResolutionWithoutExtension3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleResolutionWithoutExtension3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleResolutionWithoutExtension3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleResolutionWithoutExtension4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleResolutionWithoutExtension4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleResolutionWithoutExtension4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleResolutionWithoutExtension4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/moduleResolutionWithoutExtension4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/moduleResolutionWithoutExtension4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/moduleResolutionWithoutExtension4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/moduleResolutionWithoutExtension4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/multiline.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/multiline.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/multiline.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/multiline.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/multiline.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/multiline.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/multiline.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/multiline.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/multipleDeclarations.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/multipleDeclarations.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/multipleDeclarations.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/multipleDeclarations.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/multipleDeclarations.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/multipleDeclarations.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/multipleDeclarations.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/multipleDeclarations.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/namespaceAssignmentToRequireAlias.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/namespaceAssignmentToRequireAlias.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/namespaceAssignmentToRequireAlias.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/namespaceAssignmentToRequireAlias.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nestedDestructuringOfRequire.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nestedDestructuringOfRequire.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nestedDestructuringOfRequire.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nestedDestructuringOfRequire.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nestedDestructuringOfRequire.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nestedDestructuringOfRequire.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nestedDestructuringOfRequire.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nestedDestructuringOfRequire.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nestedPrototypeAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nestedPrototypeAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nestedPrototypeAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nestedPrototypeAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nestedPrototypeAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nestedPrototypeAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nestedPrototypeAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nestedPrototypeAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeAllowJsPackageSelfName(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeAllowJsPackageSelfName(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeAllowJsPackageSelfName(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeAllowJsPackageSelfName(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeAllowJsPackageSelfName(module=node16).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeAllowJsPackageSelfName(module=node16).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeAllowJsPackageSelfName(module=node16).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeAllowJsPackageSelfName(module=node16).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeAllowJsPackageSelfName(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeAllowJsPackageSelfName(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeAllowJsPackageSelfName(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeAllowJsPackageSelfName(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeAllowJsPackageSelfName(module=nodenext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeAllowJsPackageSelfName(module=nodenext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeAllowJsPackageSelfName(module=nodenext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeAllowJsPackageSelfName(module=nodenext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeAllowJsPackageSelfName2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeAllowJsPackageSelfName2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeAllowJsPackageSelfName2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeAllowJsPackageSelfName2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJs1(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJs1(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJs1(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJs1(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJs1(module=node16).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJs1(module=node16).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJs1(module=node16).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJs1(module=node16).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJs1(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJs1(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJs1(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJs1(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJs1(module=nodenext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJs1(module=nodenext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJs1(module=nodenext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJs1(module=nodenext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsCjsFromJs(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsCjsFromJs(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsCjsFromJs(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsCjsFromJs(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsCjsFromJs(module=node16).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsCjsFromJs(module=node16).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsCjsFromJs(module=node16).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsCjsFromJs(module=node16).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsCjsFromJs(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsCjsFromJs(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsCjsFromJs(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsCjsFromJs(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsCjsFromJs(module=nodenext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsCjsFromJs(module=nodenext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsCjsFromJs(module=nodenext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsCjsFromJs(module=nodenext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsConditionalPackageExports(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsConditionalPackageExports(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsConditionalPackageExports(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsConditionalPackageExports(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsConditionalPackageExports(module=node16).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsConditionalPackageExports(module=node16).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsConditionalPackageExports(module=node16).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsConditionalPackageExports(module=node16).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsConditionalPackageExports(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsConditionalPackageExports(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsConditionalPackageExports(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsConditionalPackageExports(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsConditionalPackageExports(module=nodenext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsConditionalPackageExports(module=nodenext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsConditionalPackageExports(module=nodenext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsConditionalPackageExports(module=nodenext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsDynamicImport(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsDynamicImport(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsDynamicImport(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsDynamicImport(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsDynamicImport(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsDynamicImport(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsDynamicImport(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsDynamicImport(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsExportAssignment(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsExportAssignment(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsExportAssignment(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsExportAssignment(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsExportAssignment(module=node16).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsExportAssignment(module=node16).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsExportAssignment(module=node16).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsExportAssignment(module=node16).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsExportAssignment(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsExportAssignment(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsExportAssignment(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsExportAssignment(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsExportAssignment(module=nodenext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsExportAssignment(module=nodenext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsExportAssignment(module=nodenext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsExportAssignment(module=nodenext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsGeneratedNameCollisions(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsGeneratedNameCollisions(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsGeneratedNameCollisions(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsGeneratedNameCollisions(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsGeneratedNameCollisions(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsGeneratedNameCollisions(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsGeneratedNameCollisions(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsGeneratedNameCollisions(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportAssignment(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportAssignment(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportAssignment(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportAssignment(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportAssignment(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportAssignment(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportAssignment(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportAssignment(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions1(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions1(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions1(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions1(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions1(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions1(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions1(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions1(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions2(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions2(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions2(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions2(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions2(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions2(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions2(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions2(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions3(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions3(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions3(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions3(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions3(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions3(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportHelpersCollisions3(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportHelpersCollisions3(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportMeta(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportMeta(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportMeta(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportMeta(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportMeta(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportMeta(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsImportMeta(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsImportMeta(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageExports(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageExports(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageExports(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageExports(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageExports(module=node16).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageExports(module=node16).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageExports(module=node16).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageExports(module=node16).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageExports(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageExports(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageExports(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageExports(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageExports(module=nodenext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageExports(module=nodenext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageExports(module=nodenext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageExports(module=nodenext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageImports(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageImports(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageImports(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageImports(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageImports(module=node16).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageImports(module=node16).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageImports(module=node16).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageImports(module=node16).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageImports(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageImports(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageImports(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageImports(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageImports(module=nodenext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageImports(module=nodenext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackageImports(module=nodenext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackageImports(module=nodenext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExports(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExports(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExports(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExports(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExports(module=node16).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExports(module=node16).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExports(module=node16).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExports(module=node16).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExports(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExports(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExports(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExports(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExports(module=nodenext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExports(module=nodenext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExports(module=nodenext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExports(module=nodenext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=node16).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsPackagePatternExportsTrailers(module=nodenext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsSynchronousCallErrors(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsSynchronousCallErrors(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsSynchronousCallErrors(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsSynchronousCallErrors(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsSynchronousCallErrors(module=node16).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsSynchronousCallErrors(module=node16).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsSynchronousCallErrors(module=node16).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsSynchronousCallErrors(module=node16).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsSynchronousCallErrors(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsSynchronousCallErrors(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsSynchronousCallErrors(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsSynchronousCallErrors(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsSynchronousCallErrors(module=nodenext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsSynchronousCallErrors(module=nodenext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsSynchronousCallErrors(module=nodenext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsSynchronousCallErrors(module=nodenext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsTopLevelAwait(module=node16).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsTopLevelAwait(module=node16).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsTopLevelAwait(module=node16).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsTopLevelAwait(module=node16).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsTopLevelAwait(module=nodenext).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsTopLevelAwait(module=nodenext).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesAllowJsTopLevelAwait(module=nodenext).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesAllowJsTopLevelAwait(module=nodenext).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesCJSEmit1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesCJSEmit1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesCJSEmit1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesCJSEmit1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesCJSResolvingToESM1_emptyPackageJson.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesCJSResolvingToESM1_emptyPackageJson.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesCJSResolvingToESM1_emptyPackageJson.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesCJSResolvingToESM1_emptyPackageJson.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesCJSResolvingToESM2_cjsPackageJson.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesCJSResolvingToESM2_cjsPackageJson.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesCJSResolvingToESM2_cjsPackageJson.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesCJSResolvingToESM2_cjsPackageJson.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesCJSResolvingToESM3_modulePackageJson.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesCJSResolvingToESM3_modulePackageJson.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesCJSResolvingToESM3_modulePackageJson.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesCJSResolvingToESM3_modulePackageJson.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/nodeModulesCJSResolvingToESM4_noPackageJson.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesCJSResolvingToESM4_noPackageJson.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/nodeModulesCJSResolvingToESM4_noPackageJson.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/nodeModulesCJSResolvingToESM4_noPackageJson.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/optionalBindingParameters3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/optionalBindingParameters3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/optionalBindingParameters3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/optionalBindingParameters3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/optionalBindingParameters3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/optionalBindingParameters3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/optionalBindingParameters3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/optionalBindingParameters3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/optionalBindingParameters4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/optionalBindingParameters4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/optionalBindingParameters4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/optionalBindingParameters4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/optionalBindingParameters4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/optionalBindingParameters4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/optionalBindingParameters4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/optionalBindingParameters4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/overloadTag1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/overloadTag1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/overloadTag1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/overloadTag1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/overloadTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/overloadTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/overloadTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/overloadTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/overloadTag2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/overloadTag2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/overloadTag2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/overloadTag2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/overloadTag2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/overloadTag2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/overloadTag2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/overloadTag2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/overloadTag3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/overloadTag3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/overloadTag3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/overloadTag3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/overloadTag3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/overloadTag3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/overloadTag3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/overloadTag3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/override_js1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/override_js1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/override_js1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/override_js1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/override_js2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/override_js2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/override_js2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/override_js2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/override_js3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/override_js3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/override_js3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/override_js3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/override_js4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/override_js4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/override_js4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/override_js4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagBracketsAddOptionalUndefined.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagBracketsAddOptionalUndefined.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagBracketsAddOptionalUndefined.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagBracketsAddOptionalUndefined.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagBracketsAddOptionalUndefined.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagBracketsAddOptionalUndefined.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagBracketsAddOptionalUndefined.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagBracketsAddOptionalUndefined.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagNestedWithoutTopLevelObject.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagNestedWithoutTopLevelObject.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagNestedWithoutTopLevelObject.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagNestedWithoutTopLevelObject.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagNestedWithoutTopLevelObject2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagNestedWithoutTopLevelObject2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagNestedWithoutTopLevelObject2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagNestedWithoutTopLevelObject2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagNestedWithoutTopLevelObject3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagNestedWithoutTopLevelObject3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagNestedWithoutTopLevelObject3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagNestedWithoutTopLevelObject3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagNestedWithoutTopLevelObject3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagNestedWithoutTopLevelObject3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagNestedWithoutTopLevelObject3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagNestedWithoutTopLevelObject3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagNestedWithoutTopLevelObject4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagNestedWithoutTopLevelObject4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagNestedWithoutTopLevelObject4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagNestedWithoutTopLevelObject4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagOnCallExpression.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagOnCallExpression.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagOnCallExpression.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagOnCallExpression.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagOnCallExpression.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagOnCallExpression.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagOnCallExpression.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagOnCallExpression.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagOnFunctionUsingArguments.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagOnFunctionUsingArguments.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagOnFunctionUsingArguments.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagOnFunctionUsingArguments.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagOnFunctionUsingArguments.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagOnFunctionUsingArguments.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagOnFunctionUsingArguments.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagOnFunctionUsingArguments.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagTypeResolution.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagTypeResolution.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagTypeResolution.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagTypeResolution.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagTypeResolution.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagTypeResolution.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagTypeResolution.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagTypeResolution.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagTypeResolution2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagTypeResolution2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagTypeResolution2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagTypeResolution2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagWrapping.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagWrapping.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagWrapping.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagWrapping.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/paramTagWrapping.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/paramTagWrapping.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/paramTagWrapping.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/paramTagWrapping.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression10.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression10.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression10.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression10.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression13.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression13.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression13.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression13.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression14.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression14.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression14.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression14.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression15.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression15.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression15.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression15.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression16.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression16.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression16.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression16.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression17.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression17.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression17.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression17.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/parserArrowFunctionExpression8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/parserArrowFunctionExpression8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/plainJSBinderErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/plainJSBinderErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/plainJSBinderErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/plainJSBinderErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/plainJSGrammarErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/plainJSGrammarErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/plainJSGrammarErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/plainJSGrammarErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/plainJSGrammarErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/plainJSGrammarErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/plainJSGrammarErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/plainJSGrammarErrors.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/plainJSGrammarErrors3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/plainJSGrammarErrors3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/plainJSGrammarErrors3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/plainJSGrammarErrors3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/plainJSGrammarErrors3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/plainJSGrammarErrors3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/plainJSGrammarErrors3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/plainJSGrammarErrors3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/plainJSGrammarErrors4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/plainJSGrammarErrors4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/plainJSGrammarErrors4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/plainJSGrammarErrors4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/plainJSRedeclare.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/plainJSRedeclare.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/plainJSRedeclare.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/plainJSRedeclare.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/plainJSRedeclare3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/plainJSRedeclare3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/plainJSRedeclare3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/plainJSRedeclare3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/plainJSReservedStrict.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/plainJSReservedStrict.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/plainJSReservedStrict.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/plainJSReservedStrict.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/plainJSTypeErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/plainJSTypeErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/plainJSTypeErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/plainJSTypeErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/privateConstructorFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/privateConstructorFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/privateConstructorFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/privateConstructorFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/privateIdentifierExpando.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/privateIdentifierExpando.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/privateIdentifierExpando.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/privateIdentifierExpando.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/privateNameJsBadAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/privateNameJsBadAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/privateNameJsBadAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/privateNameJsBadAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/privateNameJsBadDeclaration.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/privateNameJsBadDeclaration.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/privateNameJsBadDeclaration.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/privateNameJsBadDeclaration.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/privateNamesIncompatibleModifiersJs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/privateNamesIncompatibleModifiersJs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/privateNamesIncompatibleModifiersJs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/privateNamesIncompatibleModifiersJs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/propertiesOfGenericConstructorFunctions.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/propertiesOfGenericConstructorFunctions.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/propertiesOfGenericConstructorFunctions.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/propertiesOfGenericConstructorFunctions.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/propertyAssignmentOnImportedSymbol.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/propertyAssignmentOnImportedSymbol.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/propertyAssignmentOnImportedSymbol.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/propertyAssignmentOnImportedSymbol.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/propertyAssignmentUseParentType2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/propertyAssignmentUseParentType2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/propertyAssignmentUseParentType2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/propertyAssignmentUseParentType2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/propertyAssignmentUseParentType2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/propertyAssignmentUseParentType2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/propertyAssignmentUseParentType2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/propertyAssignmentUseParentType2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergeAcrossFiles.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergeAcrossFiles.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergeAcrossFiles.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergeAcrossFiles.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergeAcrossFiles2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergeAcrossFiles2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergeAcrossFiles2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergeAcrossFiles2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergeAcrossFiles2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergeAcrossFiles2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergeAcrossFiles2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergeAcrossFiles2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergeWithInterfaceMethod.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergeWithInterfaceMethod.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergeWithInterfaceMethod.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergeWithInterfaceMethod.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergeWithInterfaceMethod.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergeWithInterfaceMethod.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergeWithInterfaceMethod.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergeWithInterfaceMethod.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergedTypeReference.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergedTypeReference.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/prototypePropertyAssignmentMergedTypeReference.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/prototypePropertyAssignmentMergedTypeReference.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/reExportJsFromTs.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/reExportJsFromTs.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/reExportJsFromTs.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/reExportJsFromTs.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/reExportJsFromTs.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/reExportJsFromTs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/reExportJsFromTs.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/reExportJsFromTs.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/recursiveTypeReferences2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/recursiveTypeReferences2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/recursiveTypeReferences2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/recursiveTypeReferences2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/recursiveTypeReferences2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/recursiveTypeReferences2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/recursiveTypeReferences2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/recursiveTypeReferences2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/requireAssertsFromTypescript.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/requireAssertsFromTypescript.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/requireAssertsFromTypescript.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/requireAssertsFromTypescript.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/requireAssertsFromTypescript.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/requireAssertsFromTypescript.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/requireAssertsFromTypescript.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/requireAssertsFromTypescript.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/requireOfESWithPropertyAccess.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/requireOfESWithPropertyAccess.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/requireOfESWithPropertyAccess.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/requireOfESWithPropertyAccess.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/requireOfESWithPropertyAccess.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/requireOfESWithPropertyAccess.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/requireOfESWithPropertyAccess.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/requireOfESWithPropertyAccess.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/requireTwoPropertyAccesses.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/requireTwoPropertyAccesses.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/requireTwoPropertyAccesses.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/requireTwoPropertyAccesses.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/requireTwoPropertyAccesses.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/requireTwoPropertyAccesses.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/requireTwoPropertyAccesses.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/requireTwoPropertyAccesses.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/returnTagTypeGuard.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/returnTagTypeGuard.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/returnTagTypeGuard.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/returnTagTypeGuard.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/returnTagTypeGuard.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/returnTagTypeGuard.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/returnTagTypeGuard.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/returnTagTypeGuard.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/spellingUncheckedJS.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/spellingUncheckedJS.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/spellingUncheckedJS.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/spellingUncheckedJS.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/spellingUncheckedJS.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/spellingUncheckedJS.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/spellingUncheckedJS.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/spellingUncheckedJS.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/syntaxErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/syntaxErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/syntaxErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/syntaxErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/syntaxErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/syntaxErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/syntaxErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/syntaxErrors.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/templateInsideCallback.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/templateInsideCallback.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/templateInsideCallback.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/templateInsideCallback.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/templateInsideCallback.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/templateInsideCallback.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/templateInsideCallback.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/templateInsideCallback.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisPropertyAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisPropertyAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisPropertyAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisPropertyAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisPropertyAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisPropertyAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisPropertyAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisPropertyAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisPropertyAssignmentCircular.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisPropertyAssignmentCircular.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisPropertyAssignmentCircular.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisPropertyAssignmentCircular.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisPropertyAssignmentCircular.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisPropertyAssignmentCircular.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisPropertyAssignmentCircular.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisPropertyAssignmentCircular.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisPropertyOverridesAccessors.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisPropertyOverridesAccessors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisPropertyOverridesAccessors.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisPropertyOverridesAccessors.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisPrototypeMethodCompoundAssignmentJs.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisPrototypeMethodCompoundAssignmentJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisPrototypeMethodCompoundAssignmentJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisPrototypeMethodCompoundAssignmentJs.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisTag1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisTag1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisTag1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisTag1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisTag1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisTag1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisTag1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisTag1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisTag2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisTag2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisTag2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisTag2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisTag3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisTag3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisTag3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisTag3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisTag3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisTag3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisTag3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisTag3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/thisTypeOfConstructorFunctions.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/thisTypeOfConstructorFunctions.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/thisTypeOfConstructorFunctions.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/thisTypeOfConstructorFunctions.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/topLevelThisAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/topLevelThisAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/topLevelThisAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/topLevelThisAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/topLevelThisAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/topLevelThisAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/topLevelThisAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/topLevelThisAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/ts-expect-error-nocheck-js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/ts-expect-error-nocheck-js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/ts-expect-error-nocheck-js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/ts-expect-error-nocheck-js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeErrors.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeInvalidNames.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeInvalidNames.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeInvalidNames.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeInvalidNames.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeInvalidNames.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeInvalidNames.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeInvalidNames.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeInvalidNames.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution10.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution10.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution10.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution10.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution10.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution10.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution10.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution10.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution11.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution11.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution11.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution11.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution11.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution11.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution11.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution11.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution12.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution12.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution12.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution12.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution12.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution12.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution12.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution12.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution13.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution13.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution13.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution13.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution14.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution14.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution14.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution14.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution14.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution14.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution14.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution14.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution15.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution15.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution15.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution15.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution15.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution15.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution15.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution15.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution16.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution16.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution16.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution16.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution16.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution16.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution16.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution16.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution9.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution9.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution9.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution9.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxAttributeResolution9.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution9.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxAttributeResolution9.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxAttributeResolution9.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxCorrectlyParseLessThanComparison1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxCorrectlyParseLessThanComparison1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxCorrectlyParseLessThanComparison1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxCorrectlyParseLessThanComparison1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDefaultAttributesResolution3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDefaultAttributesResolution3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxDynamicTagName9.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName9.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxDynamicTagName9.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxDynamicTagName9.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution10.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution10.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution10.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution10.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution10.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution10.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution10.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution10.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution11.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution11.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution11.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution11.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution11.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution11.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution11.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution11.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution12.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution12.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution12.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution12.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution12.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution12.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution12.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution12.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution13.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution13.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution13.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution13.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution14.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution14.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution14.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution14.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution15.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution15.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution15.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution15.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution15.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution15.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution15.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution15.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution16.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution16.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution16.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution16.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution16.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution16.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution16.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution16.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution17.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution17.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution17.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution17.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution18.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution18.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution18.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution18.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution18.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution18.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution18.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution18.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution19.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution19.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution19.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution19.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution8.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution8.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution8.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution8.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution9.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution9.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution9.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution9.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxElementResolution9.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution9.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxElementResolution9.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxElementResolution9.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxEmit1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxEmit1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxEmit1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxEmit1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxEmit2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxEmit2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxEmit2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxEmit2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxEmit3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxEmit3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxEmit3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxEmit3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxEmitSpreadAttribute(target=es2015).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxEmitSpreadAttribute(target=es2015).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxEmitSpreadAttribute(target=es2015).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxEmitSpreadAttribute(target=es2015).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxEmitSpreadAttribute(target=es2018).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxEmitSpreadAttribute(target=es2018).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxEmitSpreadAttribute(target=es2018).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxEmitSpreadAttribute(target=es2018).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxEmitSpreadAttribute(target=esnext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxEmitSpreadAttribute(target=esnext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxEmitSpreadAttribute(target=esnext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxEmitSpreadAttribute(target=esnext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxErrorRecovery1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxErrorRecovery1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxErrorRecovery1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxErrorRecovery1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxErrorRecovery2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxErrorRecovery2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxErrorRecovery2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxErrorRecovery2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxErrorRecovery3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxErrorRecovery3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxErrorRecovery3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxErrorRecovery3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxErrorRecovery3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxErrorRecovery3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxErrorRecovery3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxErrorRecovery3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxExternalModuleEmit1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxExternalModuleEmit1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxExternalModuleEmit1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxExternalModuleEmit1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxExternalModuleEmit2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxExternalModuleEmit2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxExternalModuleEmit2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxExternalModuleEmit2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxFragmentErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxFragmentErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxFragmentErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxFragmentErrors.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxFragmentPreserveEmit.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxFragmentPreserveEmit.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxFragmentPreserveEmit.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxFragmentPreserveEmit.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxFragmentReactEmit.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxFragmentReactEmit.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxFragmentReactEmit.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxFragmentReactEmit.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericArrowFunctionParsing.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericArrowFunctionParsing.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericArrowFunctionParsing.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericArrowFunctionParsing.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType8.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType8.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType8.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType8.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType9.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType9.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType9.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType9.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType9.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType9.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxGenericAttributesType9.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxGenericAttributesType9.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxInArrowFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxInArrowFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxInArrowFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxInArrowFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxIntrinsicAttributeErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxIntrinsicAttributeErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxIntrinsicAttributeErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxIntrinsicAttributeErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxIntrinsicAttributeErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxIntrinsicAttributeErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxIntrinsicAttributeErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxIntrinsicAttributeErrors.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxLibraryManagedAttributes.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxLibraryManagedAttributes.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxLibraryManagedAttributes.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxLibraryManagedAttributes.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxLibraryManagedAttributes.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxLibraryManagedAttributes.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxLibraryManagedAttributes.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxLibraryManagedAttributes.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxNamespacedAttributeName1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxNamespacedAttributeName1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxNamespacedAttributeName1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxNamespacedAttributeName1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxNamespacedAttributeName2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxNamespacedAttributeName2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxNamespacedAttributeName2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxNamespacedAttributeName2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxNamespacedTagName1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxNamespacedTagName1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxNamespacedTagName1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxNamespacedTagName1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxNamespacedTagName2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxNamespacedTagName2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxNamespacedTagName2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxNamespacedTagName2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxNoJsx.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxNoJsx.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxNoJsx.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxNoJsx.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxOpeningClosingNames.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxOpeningClosingNames.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxOpeningClosingNames.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxOpeningClosingNames.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxParseTests1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxParseTests1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxParseTests1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxParseTests1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxParseTests2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxParseTests2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxParseTests2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxParseTests2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxPreserveEmit1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxPreserveEmit1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxPreserveEmit1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxPreserveEmit1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxPreserveEmit1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxPreserveEmit1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxPreserveEmit1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxPreserveEmit1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxPreserveEmit2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxPreserveEmit2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxPreserveEmit2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxPreserveEmit2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxPreserveEmit3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxPreserveEmit3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxPreserveEmit3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxPreserveEmit3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactComponentWithDefaultTypeParameter3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactComponentWithDefaultTypeParameter3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit8(jsx=react-jsx).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit8(jsx=react-jsx).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit8(jsx=react-jsx).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit8(jsx=react-jsx).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmit8(jsx=react-jsxdev).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit8(jsx=react-jsxdev).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmit8(jsx=react-jsxdev).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmit8(jsx=react-jsxdev).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmitEntities.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitEntities.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmitEntities.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitEntities.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmitNesting.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitNesting.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmitNesting.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitNesting.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmitSpreadAttribute(target=es2015).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitSpreadAttribute(target=es2015).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmitSpreadAttribute(target=es2015).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitSpreadAttribute(target=es2015).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmitSpreadAttribute(target=es2018).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitSpreadAttribute(target=es2018).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmitSpreadAttribute(target=es2018).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitSpreadAttribute(target=es2018).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmitSpreadAttribute(target=esnext).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitSpreadAttribute(target=esnext).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmitSpreadAttribute(target=esnext).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitSpreadAttribute(target=esnext).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmitWhitespace.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitWhitespace.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmitWhitespace.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitWhitespace.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxReactEmitWhitespace2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitWhitespace2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxReactEmitWhitespace2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxReactEmitWhitespace2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSfcReturnNull.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnNull.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSfcReturnNull.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnNull.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSfcReturnNull.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnNull.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSfcReturnNull.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnNull.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSfcReturnNullStrictNullChecks.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnNullStrictNullChecks.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSfcReturnNullStrictNullChecks.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnNullStrictNullChecks.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSfcReturnNullStrictNullChecks.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnNullStrictNullChecks.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSfcReturnNullStrictNullChecks.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnNullStrictNullChecks.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSfcReturnUndefinedStrictNullChecks.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnUndefinedStrictNullChecks.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSfcReturnUndefinedStrictNullChecks.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnUndefinedStrictNullChecks.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSfcReturnUndefinedStrictNullChecks.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnUndefinedStrictNullChecks.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSfcReturnUndefinedStrictNullChecks.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSfcReturnUndefinedStrictNullChecks.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution10.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution10.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution10.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution10.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution10.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution10.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution10.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution10.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution11.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution11.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution11.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution11.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution11.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution11.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution11.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution11.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution12.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution12.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution12.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution12.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution12.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution12.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution12.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution12.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution13.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution13.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution13.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution13.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution13.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution13.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution13.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution13.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution14.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution14.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution14.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution14.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution14.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution14.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution14.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution14.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution15.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution15.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution15.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution15.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution15.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution15.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution15.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution15.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution16.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution16.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution16.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution16.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution16.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution16.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution16.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution16.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution17.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution17.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution17.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution17.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution17.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution17.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution17.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution17.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution8.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution8.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution8.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution8.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution9.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution9.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution9.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution9.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution9.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution9.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadAttributesResolution9.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadAttributesResolution9.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadChildren.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildren.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadChildren.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildren.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es2015).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es2015).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es2015).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es2015).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es2015).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es2015).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es2015).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es2015).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es5).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es5).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es5).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es5).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es5).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es5).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es5).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react,target=es5).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadInvalidType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadInvalidType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadInvalidType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadInvalidType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxSpreadInvalidType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadInvalidType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxSpreadInvalidType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxSpreadInvalidType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentOverload6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentOverload6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentWithDefaultTypeParameter2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponents3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponents3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxStatelessFunctionComponentsWithTypeArguments5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxStatelessFunctionComponentsWithTypeArguments5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxTypeArgumentResolution.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxTypeArgumentResolution.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxTypeArgumentResolution.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxTypeArgumentResolution.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxTypeArgumentResolution.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxTypeArgumentResolution.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxTypeArgumentResolution.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxTypeArgumentResolution.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxTypeArgumentsJsxPreserveOutput.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxTypeArgumentsJsxPreserveOutput.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxTypeArgumentsJsxPreserveOutput.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxTypeArgumentsJsxPreserveOutput.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxTypeArgumentsJsxPreserveOutput.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxTypeArgumentsJsxPreserveOutput.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxTypeArgumentsJsxPreserveOutput.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxTypeArgumentsJsxPreserveOutput.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxTypeErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxTypeErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxTypeErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxTypeErrors.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionElementType6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionElementType6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionElementType6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionTypeComponent1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionTypeComponent1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionTypeComponent1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionTypeComponent1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionTypeComponent1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionTypeComponent1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionTypeComponent1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionTypeComponent1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionTypeComponent2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionTypeComponent2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionTypeComponent2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionTypeComponent2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/tsxUnionTypeComponent2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionTypeComponent2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/tsxUnionTypeComponent2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/tsxUnionTypeComponent2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromContextualThisType.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromContextualThisType.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromContextualThisType.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromContextualThisType.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromContextualThisType.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromContextualThisType.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromContextualThisType.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromContextualThisType.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromJSConstructor.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSConstructor.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromJSConstructor.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSConstructor.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromJSConstructor.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSConstructor.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromJSConstructor.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSConstructor.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromJSInitializer.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromJSInitializer.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromJSInitializer.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromJSInitializer.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromJSInitializer3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromJSInitializer3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromJSInitializer3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromJSInitializer3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromJSInitializer4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromJSInitializer4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromJSInitializer4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromJSInitializer4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromJSInitializer4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromParamTagForFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromParamTagForFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromParamTagForFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromParamTagForFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromParamTagForFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromParamTagForFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromParamTagForFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromParamTagForFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPrivatePropertyAssignmentJs.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrivatePropertyAssignmentJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPrivatePropertyAssignmentJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrivatePropertyAssignmentJs.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment10.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment10.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment10.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment10.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment10.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment10.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment10.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment10.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment10_1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment10_1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment10_1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment10_1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment10_1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment10_1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment10_1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment10_1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment11.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment11.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment11.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment11.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment12.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment12.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment12.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment12.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment12.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment12.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment12.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment12.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment13.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment13.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment13.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment13.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment13.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment13.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment13.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment13.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment14.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment14.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment14.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment14.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment14.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment14.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment14.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment14.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment15.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment15.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment15.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment15.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment15.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment15.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment15.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment15.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment16.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment16.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment16.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment16.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment16.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment16.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment16.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment16.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment17.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment17.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment17.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment17.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment18.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment18.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment18.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment18.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment18.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment18.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment18.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment18.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment19.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment19.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment19.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment19.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment20.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment20.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment20.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment20.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment21.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment21.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment21.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment21.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment21.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment21.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment21.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment21.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment22.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment22.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment22.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment22.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment22.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment22.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment22.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment22.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment23.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment23.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment23.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment23.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment24.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment24.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment24.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment24.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment24.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment24.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment24.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment24.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment25.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment25.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment25.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment25.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment25.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment25.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment25.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment25.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment26.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment26.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment26.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment26.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment26.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment26.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment26.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment26.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment27.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment27.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment27.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment27.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment28.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment28.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment28.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment28.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment28.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment28.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment28.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment28.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment34.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment34.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment34.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment34.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment34.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment34.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment34.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment34.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment35.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment35.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment35.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment35.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment35.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment35.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment35.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment35.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment37.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment37.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment37.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment37.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment37.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment37.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment37.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment37.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment39.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment39.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment39.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment39.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment39.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment39.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment39.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment39.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment40.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment40.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment40.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment40.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment5.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment5.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment5.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment5.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment6.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment6.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment6.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment6.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment6.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment6.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment6.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment6.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment7.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment7.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment7.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment7.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment7.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment7.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment7.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment7.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment8.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment8.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment8.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment8.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment8_1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment8_1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment8_1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment8_1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment9.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment9.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment9.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment9.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment9.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment9.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment9.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment9.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment9_1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment9_1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment9_1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment9_1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment9_1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment9_1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignment9_1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignment9_1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignmentOutOfOrder.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignmentOutOfOrder.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignmentOutOfOrder.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignmentOutOfOrder.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignmentOutOfOrder.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignmentOutOfOrder.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignmentOutOfOrder.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignmentOutOfOrder.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignmentWithExport.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignmentWithExport.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignmentWithExport.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignmentWithExport.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignmentWithExport.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignmentWithExport.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPropertyAssignmentWithExport.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPropertyAssignmentWithExport.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeFromPrototypeAssignment4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeFromPrototypeAssignment4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeLookupInIIFE.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeLookupInIIFE.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeLookupInIIFE.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeLookupInIIFE.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeLookupInIIFE.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeLookupInIIFE.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeLookupInIIFE.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeLookupInIIFE.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeSatisfaction_js.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeSatisfaction_js.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeSatisfaction_js.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeSatisfaction_js.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagCircularReferenceOnConstructorFunction.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagCircularReferenceOnConstructorFunction.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagCircularReferenceOnConstructorFunction.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagCircularReferenceOnConstructorFunction.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagCircularReferenceOnConstructorFunction.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagCircularReferenceOnConstructorFunction.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagCircularReferenceOnConstructorFunction.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagCircularReferenceOnConstructorFunction.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagModuleExports.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagModuleExports.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagModuleExports.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagModuleExports.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagModuleExports.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagModuleExports.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagModuleExports.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagModuleExports.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagNoErasure.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagNoErasure.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagNoErasure.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagNoErasure.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagNoErasure.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagNoErasure.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagNoErasure.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagNoErasure.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagOnFunctionReferencesGeneric.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagOnFunctionReferencesGeneric.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagOnFunctionReferencesGeneric.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagOnFunctionReferencesGeneric.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagOnPropertyAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagOnPropertyAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagOnPropertyAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagOnPropertyAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagPrototypeAssignment.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagPrototypeAssignment.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagPrototypeAssignment.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagPrototypeAssignment.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagPrototypeAssignment.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagPrototypeAssignment.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagPrototypeAssignment.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagPrototypeAssignment.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagWithGenericSignature.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagWithGenericSignature.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagWithGenericSignature.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagWithGenericSignature.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typeTagWithGenericSignature.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typeTagWithGenericSignature.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typeTagWithGenericSignature.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typeTagWithGenericSignature.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefCrossModule.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefCrossModule.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefCrossModule.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefCrossModule.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefCrossModule2.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule2.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefCrossModule2.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule2.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefCrossModule2.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule2.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefCrossModule2.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule2.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefCrossModule3.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule3.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefCrossModule3.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule3.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefCrossModule3.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule3.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefCrossModule3.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule3.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefCrossModule4.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule4.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefCrossModule4.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule4.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefCrossModule4.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule4.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefCrossModule4.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule4.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefCrossModule5.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule5.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefCrossModule5.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefCrossModule5.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefDuplicateTypeDeclaration.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefDuplicateTypeDeclaration.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefDuplicateTypeDeclaration.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefDuplicateTypeDeclaration.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefInnerNamepaths.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefInnerNamepaths.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefInnerNamepaths.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefInnerNamepaths.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefMultipleTypeParameters.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefMultipleTypeParameters.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefMultipleTypeParameters.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefMultipleTypeParameters.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefMultipleTypeParameters.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefMultipleTypeParameters.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefMultipleTypeParameters.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefMultipleTypeParameters.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefOnStatements.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefOnStatements.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefOnStatements.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefOnStatements.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefOnStatements.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefOnStatements.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefOnStatements.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefOnStatements.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefScope1.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefScope1.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefScope1.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefScope1.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefScope1.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefScope1.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefScope1.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefScope1.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefTagExtraneousProperty.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefTagExtraneousProperty.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefTagExtraneousProperty.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefTagExtraneousProperty.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefTagExtraneousProperty.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefTagExtraneousProperty.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefTagExtraneousProperty.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefTagExtraneousProperty.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefTagNested.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefTagNested.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefTagNested.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefTagNested.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefTagTypeResolution.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefTagTypeResolution.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefTagTypeResolution.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefTagTypeResolution.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefTagTypeResolution.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefTagTypeResolution.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefTagTypeResolution.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefTagTypeResolution.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefTagWrapping.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefTagWrapping.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefTagWrapping.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefTagWrapping.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/typedefTagWrapping.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/typedefTagWrapping.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/typedefTagWrapping.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/typedefTagWrapping.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/unannotatedParametersAreOptional.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/unannotatedParametersAreOptional.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/unannotatedParametersAreOptional.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/unannotatedParametersAreOptional.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/unannotatedParametersAreOptional.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/unannotatedParametersAreOptional.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/unannotatedParametersAreOptional.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/unannotatedParametersAreOptional.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/unicodeEscapesInJsxtags.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/unicodeEscapesInJsxtags.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/unicodeEscapesInJsxtags.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/unicodeEscapesInJsxtags.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/unicodeEscapesInJsxtags.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/unicodeEscapesInJsxtags.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/unicodeEscapesInJsxtags.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/unicodeEscapesInJsxtags.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/uniqueSymbolsDeclarationsInJs.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/uniqueSymbolsDeclarationsInJs.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/uniqueSymbolsDeclarationsInJs.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/uniqueSymbolsDeclarationsInJs.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/uniqueSymbolsDeclarationsInJsErrors.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/uniqueSymbolsDeclarationsInJsErrors.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/uniqueSymbolsDeclarationsInJsErrors.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/uniqueSymbolsDeclarationsInJsErrors.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/uniqueSymbolsDeclarationsInJsErrors.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/uniqueSymbolsDeclarationsInJsErrors.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/uniqueSymbolsDeclarationsInJsErrors.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/uniqueSymbolsDeclarationsInJsErrors.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/varRequireFromJavascript.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/varRequireFromJavascript.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/varRequireFromJavascript.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/varRequireFromJavascript.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/varRequireFromJavascript.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/varRequireFromJavascript.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/varRequireFromJavascript.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/varRequireFromJavascript.types.diff diff --git a/testdata/baselines/reference/submodule/conformance/varRequireFromTypescript.errors.txt.diff b/testdata/baselines/reference/submoduleAccepted/conformance/varRequireFromTypescript.errors.txt.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/varRequireFromTypescript.errors.txt.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/varRequireFromTypescript.errors.txt.diff diff --git a/testdata/baselines/reference/submodule/conformance/varRequireFromTypescript.types.diff b/testdata/baselines/reference/submoduleAccepted/conformance/varRequireFromTypescript.types.diff similarity index 100% rename from testdata/baselines/reference/submodule/conformance/varRequireFromTypescript.types.diff rename to testdata/baselines/reference/submoduleAccepted/conformance/varRequireFromTypescript.types.diff diff --git a/testdata/submoduleAccepted.txt b/testdata/submoduleAccepted.txt new file mode 100644 index 0000000000..1550fd35cb --- /dev/null +++ b/testdata/submoduleAccepted.txt @@ -0,0 +1 @@ +# Diff files to instead write to submoduleAccepted as "accepted" changes.