Skip to content

Commit

Permalink
add sourceMap
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Jan 26, 2022
1 parent 2b1916c commit 78c9b3d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1472,7 +1472,7 @@ exports.debug = debug; // for test
Object.defineProperty(exports, "__esModule", { value: true });
const main_1 = __webpack_require__(198);
main_1.run();

//# sourceMappingURL=setup-go.js.map

/***/ }),

Expand Down Expand Up @@ -2142,7 +2142,7 @@ function isGhes() {
const ghUrl = new url_1.URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');
return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM';
}

//# sourceMappingURL=main.js.map

/***/ }),

Expand Down Expand Up @@ -5756,7 +5756,7 @@ function getArch() {
return arch;
}
exports.getArch = getArch;

//# sourceMappingURL=system.js.map

/***/ }),

Expand Down Expand Up @@ -6114,7 +6114,7 @@ function makeSemver(version) {
return `${verPart}${prereleasePart}`;
}
exports.makeSemver = makeSemver;

//# sourceMappingURL=installer.js.map

/***/ }),

Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
// "typeRoots": [], /* List of folders to include type definitions from. */
// "types": [], /* Type declaration files to be included in compilation. */
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"sourceMap": true
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */

Expand Down

0 comments on commit 78c9b3d

Please sign in to comment.