Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

--watch mode forgets original output target with nodenext #46333

Closed
DanielRosenwasser opened this issue Oct 12, 2021 · 0 comments · Fixed by #46349
Closed

--watch mode forgets original output target with nodenext #46333

DanielRosenwasser opened this issue Oct 12, 2021 · 0 comments · Fixed by #46349
Assignees
Labels
Bug A bug in TypeScript Domain: --incremental The issue relates to incremental compilation Domain: ES Modules The issue relates to import/export style module behavior Fix Available A PR has been opened for this issue

Comments

@DanielRosenwasser
Copy link
Member

src/index.ts

import * as Thing from "thing";

Thing.fn();

tsconfig.json

{
    "compilerOptions": {
        "strict": true,
        "target": "es2020",
        "module": "nodenext",
        "moduleResolution": "nodenext",
        "outDir": "../dist"
    }
}

package.json

{
  "name": "some-proj",
  "version": "1.0.0",
  "description": "",
  "type": "module",
  "main": "index.js",
}
tsc --watch

First output:

import * as Thing from "thing";
Thing.fn();

Second output after a change/save:

"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
    if (k2 === undefined) k2 = k;
    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
    if (k2 === undefined) k2 = k;
    o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
    Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
    o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
    if (mod && mod.__esModule) return mod;
    var result = {};
    if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
    __setModuleDefault(result, mod);
    return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
const Thing = __importStar(require("thing"));
Thing.fn();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug A bug in TypeScript Domain: --incremental The issue relates to incremental compilation Domain: ES Modules The issue relates to import/export style module behavior Fix Available A PR has been opened for this issue
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants