我得到了很多" false"我的gulp
任务编译我的打字稿时出错。这是相关的gulp task
:
var tsProject = typescript.createProject('tsconfig.json', {noResolve: true});
gulp.task('build-ts', function() {
gulp.src(appDev + '**/*.ts')
.pipe(sourcemaps.init())
.pipe(typescript(tsProject))
.pipe(sourcemaps.write())
//.pipe(jsuglify())
.pipe(gulp.dest(appProd));
gulp.src(appDev + '**/*.+(html|css)')
.pipe(gulp.dest(appProd));
});
这些是我得到的错误:
[09:38:52] Starting 'default'...
[09:38:52] Finished 'default' after 8.88 ms
ng/app.component.ts(1,27): error TS2307: Cannot find module '@angular/core'.
ng/app.component.ts(5,12): error TS2304: Cannot find name 'module'.
ng/app.module.ts(1,26): error TS2307: Cannot find module '@angular/core'.
ng/app.module.ts(2,31): error TS2307: Cannot find module '@angular/platform-browser'.
ng/app.module.ts(3,31): error TS2307: Cannot find module '@angular/common'.
[...]
[09:38:53] TypeScript: 27 semantic errors
[09:38:53] TypeScript: emit succeeded (with errors)
[BS] Proxying: http://0.0.0.0:5000
我的树结构看起来像这样(简化):
.
├── gulpfile.js
├── ng
├── node_modules
├── package.json
├── tsconfig.json
├── typings.json
└── web
Typescript编译器无法找到的所有模块实际上都在node_modules
中,尽管存在所有错误,但我的最终应用程序仍能正常运行。
这是我的tsconfig.js
:
{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "./app"
},
"filesGlob": [
"./app/**/*.ts",
"!./node_modules/**/*.ts"
],
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}
我怎样才能摆脱这些假阳性"错误。
答案 0 :(得分:8)
在 gulp.js 文件中的行
var tsProject = typescript.createProject('tsconfig.json', {noExternalResolve: true, noResolve: true});
应该是
var tsProject = typescript.createProject('tsconfig.json');
因为我们想加载外部输入。
此外,您还需要在顶部的 main.ts 文件中加载这些内容:
/// <reference path="../typings/index.d.ts" />
我确实克隆了你的项目,并在此之后编译而没有警告。