12

我的项目一直在使用ts-node混合运行 JavaScript 和 TypeScript。最近它停止工作,没有明显的原因。在最简单的层面上,这是它的运行方式和它产生的错误:

$ TS_NODE_PROJECT=./tsconfig.json ../../node_modules/.bin/ts-node app.js                                                                                   MSTR-1513
INFO   | Arrow/1.6.0
No deployment manifest found
Uncaught Exception Could not find sourceFile: '/Users/jonah/Projects/myapp/server/src/v1/route/Routes.ts' in [].
Error: Could not find sourceFile: '/Users/jonah/Projects/myapp/server/src/v1/route/Routes.ts' in [].
    at getValidSourceFile (/Users/jonah/Projects/myapp/node_modules/typescript/lib/typescript.js:122211:23)
    at Object.getEmitOutput (/Users/jonah/Projects/myapp/node_modules/typescript/lib/typescript.js:122580:30)
    at getOutput (/Users/jonah/Projects/myapp/node_modules/ts-node/src/index.ts:354:30)
    at Object.compile (/Users/jonah/Projects/myapp/node_modules/ts-node/src/index.ts:395:32)
    at Module.m._compile (/Users/jonah/Projects/myapp/node_modules/ts-node/src/index.ts:473:43)
    at Module._extensions..js (module.js:663:10)
    at Object.require.extensions.(anonymous function) [as .ts] (/Users/jonah/Projects/myapp/node_modules/ts-node/src/index.ts:476:12)
    at Module.load (module.js:565:32)
    at tryModuleLoad (module.js:505:12)
    at Function.Module._load (module.js:497:3)

摘录app.js

const Routes = require('./v1/route/Routes').default;
server.app.use('/v1', new Routes().router);

我对这部分错误感到非常困惑:Could not find sourceFile: '/Users/jonah/Projects/myapp/server/src/v1/route/Routes.ts'. 我可以将该确切路径粘贴到终端中,然后查看该文件确实存在。这里是tsconfig.json

{
  "compileOnSave": true,
  "compilerOptions": {

    "allowJs": false,
    "removeComments": true,
    "noImplicitAny" : false,
    "module": "commonjs",
    "target": "es2017",
    "sourceMap": true,
    "watch": false,
    "types": ["mocha"],
    "forceConsistentCasingInFileNames": false
  },
  "include": [
    "./v1/**/*.ts",
    "../test/v1/**/*.ts"
  ],
  "exclude": [
    "../../node_modules"
  ]
}

运行当前最新的 TypeScript (3.5.2) 和 ts-node (8.3.0)。什么样的情况可能会产生这种错误?我什至尝试弄乱includes 以确保覆盖正在导入的文件。单独运行 TypeScript 编译器就可以了。

../../node_modules/.bin/tsc --project tsconfig.json
4

2 回答 2

0

我觉得这与循环依赖有关。特别是@Brenne 的回答说:

改变进口的顺序有所帮助。

根据我的经验,这些莫名其妙的错误总是倾向于循环依赖。

我只熟悉webpack 插件来检测这些. 但是,您可以尝试删除 require 并查看它是否正确构建。从那里,从'./v1/route/Routes'文件中删除其他需要/导入的部分,以查看其中是否有任何导致循环 dep

于 2021-05-28T22:59:54.013 回答
-5

我不熟悉 tsc,因为我总是将 babel 与 webpack 一起使用,但我认为allowJs如果你想将 js 编译为 ts,你需要启用该选项。

于 2019-08-12T15:12:05.747 回答