Searched refs:jsFilePath (Results 1 – 3 of 3) sorted by relevance
| /developtools/ace_ets2bundle/compiler/src/ |
| D | ark_utils.ts | 580 …let jsFilePath: string = genTemporaryPath(sourcePath, projectConfig.projectPath, process.env.cache… 581 if (jsFilePath.length === 0) { 584 if (jsFilePath.endsWith(EXTNAME_ETS)) { 585 jsFilePath = jsFilePath.replace(/\.ets$/, EXTNAME_JS); 587 jsFilePath = jsFilePath.replace(/\.ts$/, EXTNAME_JS); 589 let sourceMapFile: string = genSourceMapFileName(jsFilePath); 600 mkdirsSync(path.dirname(jsFilePath)); 602 fs.writeFileSync(jsFilePath, sourceContent); 606 writeObfuscatedSourceCode(sourceContent, jsFilePath, logger, projectConfig);
|
| D | utils.ts | 407 let jsFilePath: string = genTemporaryPath(sourcePath, 411 if (!jsFilePath.match(new RegExp(projectConfig.packageDir))) { 412 jsFilePath = jsFilePath.replace(/\.ets$/, suffix).replace(/\.ts$/, suffix); 417 if (projectConfig.compileMode === ESMODULE && (/\.d\.e?ts$/).test(jsFilePath)) { 419 …tedFileInHar = { sourcePath: sourcePath, originalDeclarationCachePath: jsFilePath, originalDeclara… 423 mkdirsSync(path.dirname(jsFilePath)); 425 fs.writeFileSync(jsFilePath, sourceContent);
|
| /developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/ |
| D | rollup_plugin_mock.ts | 181 …const jsFilePath = path.join(this.share.projectConfig.projectPath, '/entryability/EntryAbility.js'… constant 184 this.share.allFiles.add(jsFilePath);
|