Только модули 'amd' и 'system' поддерживаются вместе с --out

При создании машинописи в VSCode я получаю следующую ошибку:

ошибка TS6082: кроме - amd поддерживаются только модули 'amd' и 'system'.

Мои настройки следующие:

tsconfig.json

{
    "compilerOptions": {
        "target": "ES5",
        "module": "commonjs",
        "out": "current/game.js",
        "removeComments": true,
        "sourceMap": false
    }
}

.vscode / tasks.json:

{
    "version": "0.1.0",

    // The command is tsc. Assumes that tsc has been installed using npm install -g typescript
    "command": "tsc",

    // The command is a shell script
    "isShellCommand": true,

    // Show the output window only if unrecognized errors occur.
    "showOutput": "silent",

    // args is the HelloWorld program to compile.
    "args": [],

    // use the standard tsc problem matcher to find compile problems
    // in the output.
    "problemMatcher": "$tsc"
}

Несмотря на ошибку, файл game.js создается и работает правильно.

У кого-нибудь есть мысли о том, что может вызвать эту ошибку?

Ответы на вопрос(1)

Ваш ответ на вопрос