我一直在与打字稿和& angular2整天今天,因为我无法为我的应用程序启动开发服务器。经过几个小时的挫折,接着是大量的谷歌搜索,我终于设法摆脱了所有的错误,但一个:
node_modules/typings/dist/support/cli.d.ts(2,32): error TS2307: Cannot find module 'typings-core'.
有人能为此提供解决方案吗? (无法在网上找到任何东西)。
谢谢, 彼得
答案 0 :(得分:1)
npm cache clean;
npm update typings;
npm i typings -s;
npm i typings -g;
如果他们仍然失败:npm remove typings;
并再次尝试这些命令。
答案 1 :(得分:1)
当我遇到同样的错误时,这对我有用:
rm -rf node_modules/ typings/
npm install
typings install
答案 2 :(得分:0)
我实际上通过将以下代码添加到tsconfig.json
来逃避错误 "skipLibCheck": true,