簡體   English   中英

Angular2 Beta和gulp-tsc-找不到模塊``angular2 / core''

[英]Angular2 beta and gulp-tsc - Cannot find module 'angular2/core'

我正在嘗試使用新的angular 2.0 beta自動執行打字稿編譯。

項目結構為:

myapp
|--node_modules
     |---angular2
            |--core.d.ts
            |--...
|--lib
    |--resources
         |--app
             |--app.component.ts
|--typings
     |--..
.
|--package.json
|--gulpfile.js

app.component.ts摘錄:

import {Component, View} from 'angular2/core';
import {TechnologiesService} from './services';

當我直接從外殼運行typescript命令(tsc)時,一切順利,並生成了javascript文件。 但是,當我運行gulp編譯任務時,會出現一些錯誤,因為它找不到angular2 / core和angular2 / platform / browser模塊。 為什么?

[16:35:55] Using gulpfile C:\dev\myapp\gulpfile.js
[16:35:55] Starting 'compile-ts'...
[16:35:55] Compiling TypeScript files using tsc version 1.8.2
[16:35:56] [tsc] > lib/resources/app/app.component.ts(1,46): error TS2307: Cannot find module 'angular2/core'.
[16:35:56] [tsc] > lib/resources/app/app.component.ts(44,14): error TS1219: Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning.
[16:35:56] [tsc] > lib/resources/app/main.ts(1,28): error TS2307: Cannot find module 'angular2/platform/browser'.
[16:35:56] Failed to compile TypeScript: Error: tsc command has exited with code:2

events.js:154
      throw er; // Unhandled 'error' event
      ^
 Error: Failed to compile: tsc command has exited with code:2

gulpfile 打字稿編譯任務

var gulp = require('gulp');
var plugins = require('gulp-load-plugins')();
var typescript = require('gulp-tsc');
gulp.task('compile-ts', function(){
  return gulp.src(['./lib/resources/app/**/*.ts'])
    .pipe(typescript({"target": "es5", "module": "system", "moduleResolution": "node", "sourceMap": true,
                      "experimentalDecorators": true, "emitDecoraasdftorMetadata": true, "removeComments": false,
                      "noImplicitAny": false}))
    .pipe(gulp.dest('./public/app/'));
});

我使用的是gulp-typescript而不是gulp-tsc,並且以下gulpfile.js與指定的tsconfig.json文件完美配合。

var gulp = require('gulp');
var ts = require('gulp-typescript');
var path = require('path');
var sourcemaps = require('gulp-sourcemaps');

gulp.task('build:client', function () {
    var tsProject = ts.createProject('client/tsconfig.json');
    var tsResult = gulp.src([
        'client/**/*.ts',
        '!client/typings/main/**/*.ts',
        '!client/typings/main.d.ts'
    ])        
        .pipe(sourcemaps.init())
        .pipe(ts(tsProject))
    return tsResult.js
        .pipe(sourcemaps.write())
        .pipe(gulp.dest('server'))
});

gulp.task('default', ['build:client']);

我的tsconfig.json

{
  "compilerOptions": {
    "target": "es5",
    "module": "system",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false,
    "rootDir":"./"    
  },
  "exclude": [    
    "typings/main",
    "typings/main.d.ts"
  ]
}

安裝打字

npm install typings --save-dev

初始化types.json

typings init

為“ es6-collection”和“ es6-promise”安裝鍵入

typings install es6-collections --ambient --save
typings install es6-promise --ambient --save

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM