Open
Description
Below line will be lost in compiled JS file:
import { CharCode } from './charCode.js';
import { MarshalledId } from './marshallingIds.js';
import * as paths from './path.js';
import { isWindows } from './platform.js';
const _schemePattern = /^\w[\w\d+.-]*$/;
const _singleSlashStart = /^\//;
const _doubleSlashStart = /^\/\//;
The current generated JS result as below:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Uri = exports.URI = void 0;
exports.isUriComponents = isUriComponents;
exports.uriToFsPath = uriToFsPath;
const paths = require("./path.js");
const platform_js_1 = require("./platform.js");
const _schemePattern = /^\w[\w\d+.-]*$/;
const _singleSlashStart = /^\//;
const _doubleSlashStart = /^\/\//;
The first 2 line imports losts: charCode.js
and marshallingIds.js