I want to setup a Phaser project via npm:
npm install --save phaser-ce
When I put some code in a *.ts file, TSLint in VS Code will always say "cannot find name 'Phaser'".
I can use triple-slash reference, but are there any better ways to do that? Or there are some tutorials on how to setup a project via NPM in TypeScript? Using NPM will be easier to keep Phaser up-to-date instead of downloading *.js and *.d.ts files respectively.
Although there are many templates to help us setup a project with Phaser+Webpack+TypeScript, I think it's better to learn how to setup, so I could do more on it myself such as bundling Cordova and Eletron with Phaser in TypeScript.
Thanks for advance!