You can disable TypeScript strict mode by modifying the following configuration to your tsconfig.json. (This is not recommend as it will make your application more prone to runtime errors.)
pnpm requires you to configure your workspaces in a pnpm-workspace.yaml file. See example below:
packages:# all packages in direct subdirs of packages/-'packages/*'# all packages in subdirs of components/-'components/**'# exclude packages that are inside test directories-'!**/test/**'
Before installing your dependencies with pnpm, make sure to remove node_modules and package-lock.json from your previous package manager from your project.
pnpm install
Push pnpm-lock.yaml and pnpm-workspace.yaml
Make sure to push the pnpm-lock.yaml and pnpm-workspace.yaml files to your repository, so Colyseus Cloud can install your dependencies correctly.