мой проект был сгенерирован с [ Angular CLI] версии 1.2.6.
Я могу скомпилировать проект, и он отлично работает, но я всегда получаю ошибку в коде, рассказывающем мне не может найти модуль '@angular/core' не может найти модуль '@angular/router' не может найти модуль.....
Я добавил содержимое моего файла tsconfig.json это действительно расстраивало меня, проводя 2 часа, чтобы выяснить, что не так, Я также удалил и переустановил код vs он не работает.
вот моя спецификация окружения:
@angular/cli: 1.2.6
node: 6.9.1
os: win32 x64
@angular/animations: 4.3.4
@angular/common: 4.3.4
@angular/compiler: 4.3.4
@angular/core: 4.3.4
@angular/forms: 4.3.4
@angular/http: 4.3.4
@angular/platform-browser: 4.3.4
@angular/platform-browser-dynamic: 4.3.4
@angular/router: 4.3.4
@angular/cli: 1.2.6
@angular/compiler-cli: 4.3.4
@angular/language-service: 4.3.4
os: Microsoft vs 10 enterprise
корневая папка проекта
.angular-cli.json
.editorconfig
.gitignore
.vscode
e2e
karma.conf.js
node_modules
package.json
protractor.conf.js
README.md
src
tsconfig.json
tslint.json
папка node_module
[email protected]
--animations
--cli
--common
--compiler
--compiler-cli
--core
[email protected]
---bundles
---core.d.ts
---core.metadata.json
---package.json
---public_api.d.ts
---README.md
---src
---testing
---testing.d.ts
---testing.metadata.json
--forms
--http
--language-service
--platform-browser
--platform-browser-dynamic
--router
--tsc-wrapped
@ng-bootstrap
@ngtools
[email protected]
--jasmine
--jasminewd2
--node
--q
--selenium-webdriver
tsconfig.json:
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2016",
"dom"
]
}
}