NodeJS 语法错误:无法在Turborepo包中的模块外部使用import语句

ippsafx7  于 2022-11-03  发布在  Node.js
关注(0)|答案(3)|浏览(152)

我在turborepo中有一个typescript“test”包,它可以导入和导出typescript函数。
因为它是turborepo,所以它被复制到node_modules/test。
当我尝试运行import {func} from "test"时,它给我这个错误SyntaxError: Cannot use import statement outside a module.测试包的Ts配置是。

{
    "extends": "tsconfig/base.json",
    "compilerOptions": {
      "declaration": true,
      "target": "es6",
      "module": "commonjs",
      "moduleResolution": "node",
      "baseUrl": ".",
    },
    "include": ["**/*.ts"]
  }

此节点应用程序的Nodemon配置

{
  "watch": ["src"],
  "ignore": ["src/**/*.test.ts"],
  "ext": "ts,mjs,js,json,graphql",
  "exec": "tsc && node ./dist/index.js",
  "legacyWatch": true
}

但是当我尝试在nextjs项目中导入相同的东西时,配置中包含了这个。

const withTM = require('next-transpile-modules')(['test'])

它工作得非常好。
在我看来,在节点服务器端。当我包括节点模块的.ts时。它没有被传播。
有办法解决吗?
我也尝试过使用tsc构建包,但是将dist文件夹保留在包中似乎并不理想。

2o7dmzc5

2o7dmzc51#

尝试使用"type": "module"进行导入。https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-7.html#type-in-packagejson-and-new-extensions

vh0rcniy

vh0rcniy2#

这对我有用。
packages/test/package.json

{
  "name": "test",
  "version": "1.0.0",
  "description": "",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "dev": "tsc-watch --onSuccess tsc ",
    "postinstall": "tsc"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "tsc-watch": "^5.0.3"
  }
}
rur96b6h

rur96b6h3#

对于node服务器,我使用ts-node --transpile-only index.ts,它可以完美地处理.ts文件。

相关问题