Ts-node:SyntaxError:不能在模块外使用导入语句

Min*_*ing 12 typescript ts-node

我试图在项目中使用顶层,看到有必要将模块从 tscofnig 更改为 esnext 或 system,但由于某种原因我的 ts-node 错误。而且我已经把 type: module 我试图使用标志:--experimental-modules 但错误仍然不知道如何解决。

包.json:

{
  "name": "micro-hr",
  "version": "1.0.0",
  "main": "index.js",
  "license": "MIT",
  "type": "module",
  "scripts": {
    "commit": "git-cz",
    "build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
    "start:dev": "ts-node-dev --experimental-modules --inspect --respawn --transpile-only --ignore-watch node_modules -r tsconfig-paths/register src/index.ts",
    "start:debug": "node start --debug --watch",
    "start:prod": "node dist/index.ts",
    "test": "jest",
    "lint": "eslint --fix",
    "lint2": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
    "typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config ./ormconfig.ts",
    "migration:generate": "ts-node ./node_modules/typeorm/cli.js migration:generate -n"
  },
  "devDependencies": {
    "@babel/cli": "^7.11.5",
    "@babel/core": "^7.11.5",
    "@babel/node": "^7.10.5",
    "@babel/preset-env": "^7.11.5",
    "@babel/preset-typescript": "^7.10.4",
    "@commitlint/cli": "^9.1.2",
    "@commitlint/config-conventional": "^9.1.2",
    "@types/bcryptjs": "^2.4.2",
    "@types/cookie-parser": "^1.4.2",
    "@types/cors": "^2.8.7",
    "@types/express": "^4.17.8",
    "@types/helmet": "^0.0.48",
    "@types/jest": "^26.0.13",
    "@types/node": "^14.6.4",
    "@types/pino": "^6.3.0",
    "@types/pino-http": "^5.0.5",
    "@types/supertest": "^2.0.10",
    "@typescript-eslint/eslint-plugin": "^4.0.1",
    "@typescript-eslint/parser": "^4.0.1",
    "babel-plugin-module-resolver": "^4.0.0",
    "commitizen": "^4.2.1",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^7.8.1",
    "eslint-config-airbnb-base": "^14.2.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-config-standard": "^14.1.1",
    "eslint-import-resolver-typescript": "^2.3.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.1.4",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.1",
    "husky": "^4.2.5",
    "jest": "^26.4.2",
    "pino-pretty": "^4.2.0",
    "prettier": "^2.1.1",
    "supertest": "^4.0.2",
    "ts-jest": "^26.3.0",
    "ts-node": "^9.0.0",
    "ts-node-dev": "^1.0.0-pre.62",
    "tsconfig-paths": "^3.9.0",
    "tscpaths": "^0.0.9",
    "typescript": "^4.0.2"
  },
  "dependencies": {
    "amqplib": "^0.6.0",
    "assert": "^2.0.0",
    "bcryptjs": "^2.4.3",
    "class-transformer": "^0.3.1",
    "cors": "^2.8.5",
    "dotenv": "^8.2.0",
    "envalid": "^6.0.2",
    "express": "^4.17.1",
    "extendable-error": "^0.1.7",
    "helmet": "^4.1.0",
    "nabbitmq": "^1.0.0",
    "pg": "^8.3.3",
    "pino": "^6.5.1",
    "pino-http": "^5.2.0",
    "reflect-metadata": "^0.1.13",
    "spt-rabbit-helpers": "^1.0.6",
    "tsyringe": "^4.3.0",
    "typeorm": "^0.2.25"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

配置:

{
  "compilerOptions": {
    "target": "es2020",
    "module": "esnext",
    "allowJs": true,
    "outDir": "./dist",
    "rootDir": "./src",
    "strict": true,
    "strictPropertyInitialization": false,
    "moduleResolution": "node",
    "baseUrl": "./src",
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "forceConsistentCasingInFileNames": true,
    "noImplicitAny": true,
    "typeRoots": ["node_modules/@types", "@types"]
  },
  "include": ["src", "__tests__"],
  "exclude": ["node_modules"]
}
Run Code Online (Sandbox Code Playgroud)

主要的:

import 'reflect-metadata';
import express from 'express';
import { RabbitServer } from 'spt-rabbit-helpers';
import validateEnv from 'utils/validateEnvs';
import {
  RabbitMqConnectionFactory,
  ConsumerFactory,
  PublisherFactory,
  RabbitMqConnection,
} from 'nabbitmq';
import { container, singleton } from 'tsyringe';

const factory = new RabbitMqConnectionFactory();
factory.setUri('amqp://localhost:5672');
const ConsumerConnection = await factory.newConnection();
const PublisherConnection = await factory.newConnection();
container.registerInstance('Consumer_Connection', ConsumerConnection);
container.registerInstance('Publisher_Connection', PublisherConnection);
Run Code Online (Sandbox Code Playgroud)

myt*_*her 34

经过大量搜索,我发现这个解决方案非常有效:

https://github.com/TypeStrong/ts-node/issues/922#issuecomment-673155000

只需"ts-node"向您的tsconfig.json文件添加一个块,如下所示:

{
  "ts-node": {
    "compilerOptions": {
      "module": "commonjs"
    }
  },
  "compilerOptions": {
    "module": "esnext"
  }
}
Run Code Online (Sandbox Code Playgroud)

并且已经记录在 ts-node 官方页面“ Via tsconfig.json ”部分。

这节省了我几个小时的生命。


Eli*_*ski 13

要运行 ts-node (或纯节点),您需要使用"module": "commonjs", "target": "ES2017",否则import/export语句将被非法放置在 IIFE 中。

所以我建议使用另一个名为node.tsconfig.json 的文件,其内容如下:

{
    "extends": "./tsconfig.json",
    "compilerOptions": {
        "target": "ES2017" // For NodeJS 8 compat, see https://www.typescriptlang.org/tsconfig#target for more info
    }
}
Run Code Online (Sandbox Code Playgroud)

然后运行 ​​ts-node --project ./node.tsconfig.json

  • 我认为阅读 https://bobbyhadz.com/blog/typescript-cannot-use-import-statement-outside-module 后我能够解决我的问题。我将其添加到我的 tsconfig.json 中: `"ts-node": { "compilerOptions": { "module": "commonjs", "target": "ES2017" } },` (3认同)
  • 应该注意的是,ts-node 命令中的项目 arg 必须位于脚本名称之前。例如 `ts-node --project ./node.tsconfig.json your-script.ts` (2认同)
  • 显然 ts-node 也接受格式 `{"ts-node": {"compilerOptions": { ... } } }` ...在主要的 `tsconfig.json` 中 (2认同)

Abh*_*rma 8

我遇到了同样的问题,我通过将modulein更改tsconfig.jsoncommonjs并删除modulein 中的密钥来修复它package.json

// tsconfig.json
{
    "module": "CommonJS",
}
Run Code Online (Sandbox Code Playgroud)

  • 这消除了使用顶级等待的能力,这是OP试图完成的 (13认同)

Bai*_*ong 5

如果您使用React,则无法为 TypeScript 设置“commonjs”。

tsconfig.json

{
    "compilerOptions": {
        "module": "esnext"
    }
}
Run Code Online (Sandbox Code Playgroud)

包.json

{
    "type": "module",
    "scripts": {
        "tsnode": "node --loader ts-node/esm --no-warnings"
    },
    "dependencies": {
        "ts-node": "^10.4.0"
    }
}
Run Code Online (Sandbox Code Playgroud)

你好.ts

import * as os from "os"
console.log("os", os);
Run Code Online (Sandbox Code Playgroud)

执行 TypeScript 文件的两种方法:

  • node --loader ts-node/esm --no-warnings hello.ts
  • npm run tsnode hello.ts