2016-10-13 85 views
0

我已經安裝並添加ng2-bootstrapangular2項目,但我有編譯錯誤。 它seemes鏈接到打字稿2我彷彿在我的package.json配置不好的版本,但它並非如此,看看吧:ng2-bootstrap問題與Typescript 2

的package.json

{ 
    "name": "angular-quickstart", 
    "version": "1.0.0", 
    "description": "QuickStart package.json from the documentation, supplemented with testing support", 
    "scripts": { 
    "start": "tsc && concurrently \"tsc -w\" \"lite-server\" ", 
    "docker-build": "docker build -t ng2-quickstart .", 
    "docker": "npm run docker-build && docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart", 
    "pree2e": "npm run webdriver:update", 
    "e2e": "tsc && concurrently \"http-server -s\" \"protractor protractor.config.js\" --kill-others --success first", 
    "lint": "tslint ./app/**/*.ts -t verbose", 
    "lite": "lite-server", 
    "postinstall": "typings install", 
    "test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"", 
    "test-once": "tsc && karma start karma.conf.js --single-run", 
    "tsc": "tsc", 
    "tsc:w": "tsc -w", 
    "typings": "typings", 
    "webdriver:update": "webdriver-manager update" 
    }, 
    "keywords": [], 
    "author": "", 
    "license": "ISC", 
    "dependencies": { 
    "@angular/common": "2.0.2", 
    "@angular/compiler": "2.0.2", 
    "@angular/core": "2.0.2", 
    "@angular/forms": "2.0.2", 
    "@angular/http": "2.0.2", 
    "@angular/platform-browser": "2.0.2", 
    "@angular/platform-browser-dynamic": "2.0.2", 
    "@angular/router": "3.0.2", 
    "@angular/upgrade": "2.0.2", 
    "angular2-in-memory-web-api": "0.0.21", 

    "systemjs": "0.19.39", 
    "core-js": "^2.4.1", 
    "reflect-metadata": "^0.1.3", 
    "rxjs": "5.0.0-beta.12", 
    "zone.js": "0.6.25", 

    "bootstrap": "^3.3.7", 
    "ng2-bootstrap": "1.1.14-1", 
    }, 

"devDependencies": { 
    "concurrently": "^2.2.0", 
    "lite-server": "^2.2.0", 
    "typescript": "^2.0.2", 
    "typings": "^1.0.4", 

    "canonical-path": "0.0.2", 
    "http-server": "^0.9.0", 
    "tslint": "^3.7.4", 
    "lodash": "^4.11.1", 
    "jasmine-core": "~2.4.1", 
    "karma": "^1.2.0", 
    "karma-chrome-launcher": "^0.2.3", 
    "karma-cli": "^0.1.2", 
    "karma-htmlfile-reporter": "^0.2.2", 
    "karma-jasmine": "^0.3.8", 
    "protractor": "^3.3.0", 
    "rimraf": "^2.5.2" 
    }, 
"repository": {} 
} 

線路錯誤例如:

private readonly trueValue; 

錯誤:

Duplicate identifier 'readonly'. 
Cannot find name 'trueValue'. 

任何想法我做錯了什麼?

+1

請提供一些此類錯誤。 – jmachnik

+0

private readonly trueValue; 這行應該做什麼? 不應該是這樣的:private variableName:Type; ? – jmachnik

回答

1

我自己回答。 這是一個noob問題。 Visual Studio 2015並不是最新版本,因爲我仍然使用TypeScript 1.8版本。

更新後,所有東西都變成了岩石。

0

我也遇到了這個錯誤,在我的情況下,這是我的本地安裝typescript仍然是早期版本的結果,而全球版本已更新到2.1.0。一旦我在package.json中指定了最新版本,問題就解決了。