Searched refs:jsFilePath (Results 1 – 7 of 7) sorted by relevance
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| D | externalProjects.ts | 868 const jsFilePath = `${tscWatch.projectRoot}/javascript.js`; constant 869 host.writeFile(jsFilePath, ""); 872 rootFiles: [{ fileName: tsconfig.path }, { fileName: jsFilePath }], 875 …service.applyChangesInOpenFiles(singleIterator({ fileName: jsFilePath, scriptKind: ScriptKind.JS, … 879 checkProjectActualFiles(inferredProject, [libFile.path, jsFilePath]); 892 … rootFiles: [{ fileName: jsConfig.path }, { fileName: tsconfig.path }, { fileName: jsFilePath }], 899 checkProjectActualFiles(jsConfigProject, [jsConfig.path, jsFilePath, libFile.path]);
|
| /third_party/typescript/src/compiler/ |
| D | emitter.ts | 77 const jsFilePath = options.emitDeclarationOnly ? undefined : outPath; constant 78 const sourceMapFilePath = jsFilePath && getSourceMapFilePath(jsFilePath, options); 82 … return { jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath }; 97 …const jsFilePath = options.emitDeclarationOnly || isJsonEmittedToSameLocation ? undefined : ownOut… constant 98 …const sourceMapFilePath = !jsFilePath || isJsonSourceFile(sourceFile) ? undefined : getSourceMapFi… 101 …return { jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath: un… 105 function getSourceMapFilePath(jsFilePath: string, options: CompilerOptions) { 106 return (options.sourceMap && !options.inlineSourceMap) ? jsFilePath + ".map" : undefined; 161 …const { jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath } = … constant 162 addOutput(jsFilePath); [all …]
|
| D | program.ts | 3740 verifyEmitFilePath(emitFileNames.jsFilePath, emitFilesSeen); 4379 …const { jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath } = … constant 4380 …const node = createInputFiles(readFile, jsFilePath!, sourceMapFilePath, declarationFilePath!, decl…
|
| /third_party/typescript/src/testRunner/unittests/tsbuild/ |
| D | helpers.ts | 339 … const { jsFilePath, declarationFilePath } = getOutputPathsForBundle(options, /*forceDts*/ false); constant 345 …dleFileSectionInfo(sys, originalReadCall || sys.readFile, baselineRecorder, bundle.js, jsFilePath);
|
| /third_party/typescript/src/compiler/transformers/ |
| D | declarations.ts | 394 … declFileName = paths.declarationFilePath || paths.jsFilePath || file.fileName;
|
| /third_party/typescript/lib/ |
| D | typingsInstaller.js | 113123 … declFileName = paths.declarationFilePath || paths.jsFilePath || file.fileName; 114806 var jsFilePath = options.emitDeclarationOnly ? undefined : outPath; 114807 var sourceMapFilePath = jsFilePath && getSourceMapFilePath(jsFilePath, options); 114811 …return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declar… 114826 …var jsFilePath = options.emitDeclarationOnly || isJsonEmittedToSameLocation ? undefined : ownOutpu… 114827 …var sourceMapFilePath = !jsFilePath || ts.isJsonSourceFile(sourceFile) ? undefined : getSourceMapF… 114830 …return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declar… 114834 function getSourceMapFilePath(jsFilePath, options) { argument 114835 return (options.sourceMap && !options.inlineSourceMap) ? jsFilePath + ".map" : undefined; 114878 …utPathsForBundle(configFile.options, /*forceDtsPaths*/ false), jsFilePath = _a.jsFilePath, sourceM… [all …]
|
| D | tsc.js | 93253 … declFileName = paths.declarationFilePath || paths.jsFilePath || file.fileName; 94722 var jsFilePath = options.emitDeclarationOnly ? undefined : outPath; 94723 var sourceMapFilePath = jsFilePath && getSourceMapFilePath(jsFilePath, options); 94727 …return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declar… 94740 …var jsFilePath = options.emitDeclarationOnly || isJsonEmittedToSameLocation ? undefined : ownOutpu… 94741 …var sourceMapFilePath = !jsFilePath || ts.isJsonSourceFile(sourceFile) ? undefined : getSourceMapF… 94744 …return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declar… 94748 function getSourceMapFilePath(jsFilePath, options) { argument 94749 return (options.sourceMap && !options.inlineSourceMap) ? jsFilePath + ".map" : undefined; 94790 …var _a = getOutputPathsForBundle(configFile.options, false), jsFilePath = _a.jsFilePath, sourceMap… [all …]
|