简体   繁体   English

tsc 命令和 tsconfig watch 之间的区别:Typescript 中的 true?

[英]Difference between tsc command, and tsconfig watch:true in Typescript?

I created tsconfig.json, and in compiler options i set watch:true;我创建了 tsconfig.json,并在编译器选项中设置了 watch:true; then in index.ts file I write this code:然后在 index.ts 文件中我写了这段代码:

async function test2(){
   return 'hello world'
}

Typescript compiler automatically created index.js file, with this code: Typescript 编译器自动创建 index.js 文件,代码如下:

async function test2(){
   return 'hello world'
}

But when I run tsc index.ts compiler added this code to js file:但是当我运行 tsc index.ts 编译器将此代码添加到 js 文件中:

var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
    return new (P || (P = Promise))(function (resolve, reject) {
        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
        function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
        step((generator = generator.apply(thisArg, _arguments || [])).next());
    });
};
var __generator = (this && this.__generator) || function (thisArg, body) {
    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
    return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
    function verb(n) { return function (v) { return step([n, v]); }; }
    function step(op) {
        if (f) throw new TypeError("Generator is already executing.");
        while (_) try {
            if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
            if (y = 0, t) op = [op[0] & 2, t.value];
            switch (op[0]) {
                case 0: case 1: t = op; break;
                case 4: _.label++; return { value: op[1], done: false };
                case 5: _.label++; y = op[1]; op = [0]; continue;
                case 7: op = _.ops.pop(); _.trys.pop(); continue;
                default:
                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
                    if (t[2]) _.ops.pop();
                    _.trys.pop(); continue;
            }
            op = body.call(thisArg, _);
        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
    }
};

function test2() {
    return __awaiter(this, void 0, void 0, function () {
        return __generator(this, function (_a) {
            return [2 /*return*/, 'string'];
        });
    });
}

So question is, what is difference between tsc and watch:true?所以问题是,tsc 和 watch:true 有什么区别? Why tsconfig.json's watch:true mode just copying same code as I wrote in ts file to js.为什么 tsconfig.json 的 watch:true 模式只是将我在 ts 文件中编写的代码复制到 js 中。 but when I run tsc index.ts it creates such a mess?但是当我运行 tsc index.ts 时,它会造成如此混乱吗? Do I need every time run tsc to new ts files?我是否需要每次运行 tsc 到新的 ts 文件? (bcz watch: true in tsconfig.json, if I understand it right, must compile the typescript code into javascript automatically) What is the difference between tsc index.ts and watch:true in tsconfig? (bcz watch: true in tsconfig.json,如果我理解正确,必须将 typescript 代码自动编译成 javascript) tsc index.ts和 watch:true 有什么区别?

I just found out, that watch: true, here in tsconfig.json, really compiles ts code to js (and compiles depending on which version of js you choose in target field).我刚刚发现,那个手表:是的,在 tsconfig.json 中,真的将 ts 代码编译为 js(并根据您在目标字段中选择的 js 版本进行编译)。 tsc index.ts command on another hand, compiles code to old es3-5另一方面, tsc index.ts命令将代码编译为旧的 es3-5

{
    "compilerOptions": {
        "target": "esnext",
        "watch": true

    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM