This is for an example project, but as you know, our team doesn't consider this to be a best-practice. Maybe guide users to a better spot, but let them know how to opt out.
```
// In some cases, a package/library won't have declaration files for TypeScript.
// Depending on your settings, TypeScript may issue errors when importing an untyped library.
// To get around that, write your own .d.ts files, or add a line such as
//
// declare module "your-package-name-here";
//
// If you want to get rid of these errors entirely, you can use a wildcard path as so:
//
// declare module "*";
//
// But be careful! This will permit invalid imports, and give no verification for untyped modules.
Thanks, the example has some old stuff in it we'll remove
❤️
Most helpful comment
Thanks, the example has some old stuff in it we'll remove