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
}