ts-node 执行带有模块导入和模块定义的打字稿 [英] ts-node execute typescript with module import and module defined

查看:284
本文介绍了ts-node 执行带有模块导入和模块定义的打字稿的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试通过打字稿初始化数据库库.

I try to initialize database base via typescript.

我的 ts 就像:

import { User, UserRole } from '../entity/User';
import crypto from 'crypto';
import {dbManager, pwhash } from '..';

async function inituser() 
{
    const user = new User();
    user.email = 'sheng.lu@mq.edu.au';
    user.own_organization = []
    user.salt = crypto.randomBytes(16).toString('hex');
    user.password = pwhash("password", user.salt);
    user.role = UserRole.admin;
    await dbManager.save(user);
    const duser = await dbManager.findOne(User);
    return duser;
}
const duser = inituser();

console.log("Loaded users: ", duser);

当我尝试通过 ts-node 运行脚本时:

when I try to run the script by ts-node like:

npx ts-node db/initializers/inituser.ts

有错误:

SyntaxError: Cannot use import statement outside a module
    at wrapSafe (internal/modules/cjs/loader.js:1167:16)
    at Module._compile (internal/modules/cjs/loader.js:1215:27)
    at Module.m._compile (/usr/lib/node_modules/ts-node/src/index.ts:858:23)
    at Module._extensions..js (internal/modules/cjs/loader.js:1272:10)
    at Object.require.extensions.<computed> [as .ts] (/usr/lib/node_modules/ts-node/src/index.ts:861:12)
    at Module.load (internal/modules/cjs/loader.js:1100:32)
    at Function.Module._load (internal/modules/cjs/loader.js:962:14)
    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)
    at main (/usr/lib/node_modules/ts-node/src/bin.ts:227:14)
    at Object.<anonymous> (/usr/lib/node_modules/ts-node/src/bin.ts:513:3)
root@MEDAIHILW237:/mnt/c/workgit/projeny# ts-node db/initializers/inituser.ts
TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".ts" for /mnt/c/workgit/projeny/db/initializers/inituser.ts
    at Loader.defaultGetFormat [as _getFormat] (internal/modules/esm/get_format.js:65:15)
    at Loader.getFormat (internal/modules/esm/loader.js:101:42)
    at Loader.getModuleJob (internal/modules/esm/loader.js:230:31)
    at Loader.import (internal/modules/esm/loader.js:164:17)
    at Object.loadESM (internal/process/esm_loader.js:68:5)
root@MEDAIHILW237:/mnt/c/workgit/projeny# ts-node db/initializers/inituser
TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".ts" for /mnt/c/workgit/projeny/db/initializers/inituser.ts
    at Loader.defaultGetFormat [as _getFormat] (internal/modules/esm/get_format.js:65:15)
    at Loader.getFormat (internal/modules/esm/loader.js:101:42)
    at Loader.getModuleJob (internal/modules/esm/loader.js:230:31)
    at Loader.import (internal/modules/esm/loader.js:164:17)
    at Object.loadESM (internal/process/esm_loader.js:68:5)

我添加了类型":模块";在 package.json 文件中.

I add "type": "module" in package.json file.

{
  "name": "typescript-test",
  "version": "1.0.0",
  "type": "module",
...
}

为了克服

(node:3854) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(Use `node --trace-warnings ...` to show where the warning was created)

推荐答案

错误 Warning: To load an ES module, set "type": "module";在 package.json 或 中是由 ts-node 中的以下错误引起的:https://github.com/TypeStrong/ts-node/issues/935

The Error Warning: To load an ES module, set "type": "module" in the package.json or is caused by the following Bug in ts-node: https://github.com/TypeStrong/ts-node/issues/935

Bug 关闭了,有解决的提议,但是还是打开了:https://github.com/TypeStrong/ts-node/issues/1007

The Bug is closed, and there is a proposal to solve it, but it is still open: https://github.com/TypeStrong/ts-node/issues/1007

我不需要 "type": "module"package.json 中,我正在使用 "module": "commonjs" 而不是 "module": "es6", tsconfig.json 中.我注意到这是因为 ts-node 问题 #1007 已解决的技术债务.

I don't need "type": "module" in package.json and am using "module": "commonjs" instead of "module": "es6", in tsconfig.json. I noted this as technical debt pending that ts-node issue #1007 is resolved.

这篇关于ts-node 执行带有模块导入和模块定义的打字稿的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆