2016-09-15 11 views
2

typings.jsonのドキュメントをインターネットで見つけることができないので、typings.jsonが正しいかどうかを検証する方法や、各プロパティの正確な使い方を読み込む方法はありません。 typings.json形式とサポートされているプロパティに関する完全なドキュメントが見つかりましたか?Typings.json有効なJSON形式またはドキュメントですか?

たとえば、Phaserをインストールした後には、\node_modules\phaser\typescriptフォルダがあり、その内にtypings.json*.d.tsというファイルが含まれています。私のアプリケーションをビルドするときに、このエラーがTypeScriptコンパイラから得られるので、typings.jsonに問題がありますが、typings.json形式で見つかるドキュメントはありません。ここで

.../node_modules/phaser/typescript/typings.json(2,11): error TS1005: ';' expected. 
.../node_modules/phaser/typescript/typings.json(3,11): error TS1005: ';' expected. 
.../node_modules/phaser/typescript/typings.json(4,12): error TS1005: ';' expected. 
.../node_modules/phaser/typescript/typings.json(5,13): error TS1005: ';' expected. 

\node_modules\phaser\typescript\typings.jsonコンテンツです:

{ 
    "name": "phaser", 
    "main": "phaser.comments.d.ts", 
    "files": ["pixi.comments.d.ts", "p2.d.ts"], 
    "global": true 
} 

答えて

0

はここtypescriptlang組織からのドキュメントです:上記のページの一番下に

https://www.typescriptlang.org/docs/handbook/writing-declaration-files.html

https://www.typescriptlang.org/docs/handbook/tsconfig-json.html

スキーマへのリンクです:

http://json.schemastore.org/tsconfig

申し訳ありませんが、より明確にする必要があります。 ttsconfig.jsonを使用して、.tsファイルを含むフォルダを除外してみてください。

"exclude": [ 
    "node_modules", 
] 
関連する問題