2017-07-07 9 views
0

私はイオンコードをインストールして、空のプロジェクトを作成しました。私は、イオン起動 毎回、それがこのような活字エラーのブラウザページが表示さ奉仕:私はインターネットで検索しましたイオンプロジェクトTypescriptのエラー

**Typescript Error** 

All declarations of 'size' must have identical modifiers. 
node_modules/typescript/lib/lib.es2015.collection.d.ts 
get(key: K): V | undefined; 
has(key: K): boolean; 
set(key: K, value: V): this; 
Typescript Error 
All declarations of 'prototype' must have identical modifiers. 
node_modules/typescript/lib/lib.es2015.collection.d.ts 
new(): WeakMap<object, any>; 
new <K extends object, V>(entries?: [K, V][]): WeakMap<K, V>; 
readonly prototype: WeakMap<object, any>; 

を、そして発見していない任意のソリューション( イオン情報ログ:

グローバルパッケージ:

@ionic/cli-utils : 1.4.0 
Ionic CLI  : 3.4.0 

ローカルパッケージ:

@ionic/app-scripts    : 1.3.12 
@ionic/cli-plugin-ionic-angular : 1.3.1 
Ionic Framework     : ionic-angular 3.5.0 

システム:

"compilerOptions": { 
    "allowSyntheticDefaultImports": true, 
    "declaration": false, 
    "emitDecoratorMetadata": true, 
    "experimentalDecorators": true, 
    "lib": [ 
     "dom", 
     "es2015" 
    ], 
    "module": "es2015", 
    "moduleResolution": "node", 
    "sourceMap": true, 
    "target": "es5", 
    "types": [] 

:これが正しい解決策がある場合

Node  : v7.2.0 
OS   : OS X El Capitan 
Xcode  : Xcode 8.2.1 Build version 8C1002 
ios-deploy : not installed 
ios-sim : not installed 
npm  : 4.1.1 
+0

あなたのタイスクリプト版は何ですか? –

答えて

0

わからない、私がやったことは、私は空の配列に種類を設定しtsconfig.json でありますまた、この人は、入力ロダッシュ(npm install @ types/lodash --save-dev --save-exact)をインストールするように提案しましたhttps://stackoverflow.com/a/44032856/4984738

"types":["lodash"]を設定します。これも機能します。より良い解決策がある場合は、ご意見をお寄せください。私の他のプロジェクトでは、すべての問題を解決していないので、プロジェクトに問題があるのか​​、それともまだタイピッチであるのかが分かりません。

関連する問題