Searched refs:getTsBuildProjectFile (Results 1 – 11 of 11) sorted by relevance
/third_party/typescript/src/testRunner/unittests/tscWatch/ |
D | projectsWithReferences.ts | 10 TestFSWithWatch.getTsBuildProjectFile("sample1", "core/tsconfig.json"), 11 TestFSWithWatch.getTsBuildProjectFile("sample1", "core/index.ts"), 12 TestFSWithWatch.getTsBuildProjectFile("sample1", "core/anotherModule.ts"), 13 TestFSWithWatch.getTsBuildProjectFile("sample1", "core/some_decl.d.ts"), 14 TestFSWithWatch.getTsBuildProjectFile("sample1", "logic/tsconfig.json"), 15 TestFSWithWatch.getTsBuildProjectFile("sample1", "logic/index.ts"), 16 TestFSWithWatch.getTsBuildProjectFile("sample1", "tests/tsconfig.json"), 17 TestFSWithWatch.getTsBuildProjectFile("sample1", "tests/index.ts"), 72 … TestFSWithWatch.getTsBuildProjectFile("transitiveReferences", "tsconfig.a.json"), 73 … TestFSWithWatch.getTsBuildProjectFile("transitiveReferences", "tsconfig.b.json"), [all …]
|
D | sourceOfProjectReferenceRedirect.ts | 2 import getFileFromProject = TestFSWithWatch.getTsBuildProjectFile;
|
D | emitAndErrorUpdates.ts | 355 ….map(f => TestFSWithWatch.getTsBuildProjectFile("noEmitOnError", f)).concat({ path: libFile.path, …
|
/third_party/typescript/src/testRunner/unittests/tsbuild/ |
D | sample.ts | 14 function getTsBuildProjectFile(project: string, file: string): tscWatch.File { function 259 const coreConfig = getTsBuildProjectFile("core", "tsconfig.json"); 260 const coreIndex = getTsBuildProjectFile("core", "index.ts"); 261 const coreDecl = getTsBuildProjectFile("core", "some_decl.d.ts"); 262 const coreAnotherModule = getTsBuildProjectFile("core", "anotherModule.ts"); 263 const logicConfig = getTsBuildProjectFile("logic", "tsconfig.json"); 264 const logicIndex = getTsBuildProjectFile("logic", "index.ts"); 265 const testsConfig = getTsBuildProjectFile("tests", "tsconfig.json"); 266 const testsIndex = getTsBuildProjectFile("tests", "index.ts"); 331 const coreConfig = getTsBuildProjectFile("core", "tsconfig.json"); [all …]
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | projectsWithReferences.ts | 4 … const coreConfig = TestFSWithWatch.getTsBuildProjectFile("sample1", "core/tsconfig.json"); 5 const coreIndex = TestFSWithWatch.getTsBuildProjectFile("sample1", "core/index.ts"); 6 …const coreAnotherModule = TestFSWithWatch.getTsBuildProjectFile("sample1", "core/anotherModule.ts"… 7 … const coreSomeDecl = TestFSWithWatch.getTsBuildProjectFile("sample1", "core/some_decl.d.ts"); 8 … const logicConfig = TestFSWithWatch.getTsBuildProjectFile("sample1", "logic/tsconfig.json"); 9 const logicIndex = TestFSWithWatch.getTsBuildProjectFile("sample1", "logic/index.ts"); 10 … const testsConfig = TestFSWithWatch.getTsBuildProjectFile("sample1", "tests/tsconfig.json"); 11 const testsIndex = TestFSWithWatch.getTsBuildProjectFile("sample1", "tests/index.ts");
|
D | projectReferences.ts | 13 TestFSWithWatch.getTsBuildProjectFile(project, "tsconfig.json"), 14 TestFSWithWatch.getTsBuildProjectFile(project, "index.ts"), 22 const containerConfig = TestFSWithWatch.getTsBuildProjectFile(project, "tsconfig.json");
|
/third_party/typescript/src/testRunner/unittests/tsbuildWatch/ |
D | reexport.ts | 14 .map(f => TestFSWithWatch.getTsBuildProjectFile("reexport", f)),
|
D | noEmitOnError.ts | 25 .map(f => TestFSWithWatch.getTsBuildProjectFile("noEmitOnError", f)),
|
D | demo.ts | 85 return TestFSWithWatch.getTsBuildProjectFile("demo", fileName);
|
D | programUpdates.ts | 18 … return TestFSWithWatch.getTsBuildProjectFile("sample1", `${subProject}/${baseFileName}`);
|
/third_party/typescript/src/harness/ |
D | virtualFileSystemWithWatch.ts | 1214 export function getTsBuildProjectFile(project: string, file: string): File { function
|