mikewesthad / phaser-matter-collision-plugin

A plugin for making it easier to manage collisions with Phaser 3 + Matter.js
MIT License
99 stars 8 forks source link

Cannot find definition file for './matter' #9

Open WastedFreeTime opened 1 year ago

WastedFreeTime commented 1 year ago

Hello, i tried using the phaser-matter-collision-plugin with Typescript and Angular but got the following error:

Error: node_modules/phaser-matter-collision-plugin/dist/collision-types.d.ts:1:23 - error TS2688: Cannot find type definition file for './matter'.

1 /// <reference types="./matter" />

My current project versions are:

"typescript": "~4.7.2"
"phaser": "^3.55.2",
"phaser-matter-collision-plugin": "^1.0.0",

Thats how i imported the plugin:

import PhaserMatterCollisionPlugin from 'phaser-matter-collision-plugin';

Three files throw this error: valid-collision-object.d.ts, utils.d.ts and collision-types.d.ts

Is there something that i am missing? I looked at the Phaser module itself and there its .matter reference is just working fine.

Can someone help me? Thanks for any help and ideas!

guydav commented 3 months ago

@WastedFreeTime This is probably irrelevant to you by now, but in case anyone else runs into this, a way I found to resolve this is to add phaser's type definitions to the typeRoots in your tsconfig.json:

{
  "compilerOptions": {
    ...
    "typeRoots": [
      "./node_modules/@types",
      "./node_modules/phaser/types"
    ]
  }
}