繁体   English   中英

TypeScript:tsc.exe --execute:错误找不到模块

[英]TypeScript: tsc.exe --execute: Error cannot find module

我有以下目录设置:

/app/ioc.ts
/tests/test.ts

我在测试目录中。 app/ioc.ts的内容并不重要,但是tests/test.ts的内容是:

import IOC = module('../app/ioc');
var container = new IOC.Container();

如果我这样编译:

tsc test.ts

然后像这样运行它:

node test

一切都好! 该文件运行没有错误。 然而! 如果我这样运行:

tsc -e test.ts

我收到以下错误:

module.js:340
    throw err;
          ^
Error: Cannot find module '../app/ioc'
    at Function.Module._resolveFilename (module.js:338:15)
    at Function.Module._load (module.js:280:25)
    at Module.require (module.js:364:17)
    at require (module.js:380:17)
    at Object.<anonymous> (D:/dropbox/work/sandbox/Prototyping/TypeScript/tests/test.js:1:73)
    at Module._compile (module.js:456:26)
    at Object.run (C:\Users\nathan\AppData\Roaming\npm\node_modules\typescript\bin\tsc.js:56041:30)
    at BatchCompiler.run (C:\Users\nathan\AppData\Roaming\npm\node_modules\typescript\bin\tsc.js:56563:29)
    at BatchCompiler.batchCompile (C:\Users\nathan\AppData\Roaming\npm\node_modules\typescript\bin\tsc.js:56795:26)
    at Object.<anonymous> (C:\Users\nathan\AppData\Roaming\npm\node_modules\typescript\bin\tsc.js:56908:7)

有任何想法吗?

您的代码很好。 -e标志已从tsc中删除,部分原因是它在这种情况下不能很好地发挥作用。 在编译器过程的上下文中执行任意JS并不是一个好主意。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM