You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey would it be ok if we introduced a jsonconfig.json? This would allow tsserver the LSP to better enforce typesafety in the code base. It basically allows your editor to spot errors more easily.
Here is a proposed example that of something I'd like to see in regards to the rules if we were to introduce this.
{"compilerOptions": {"baseUrl": ".","paths": {"src/*": ["./src/*","./test/*"],},"moduleResolution": "node","checkJs": true,"target": "ESNext",// I think this might need to change."module": "ESNext",// I think this might need to change."strictNullChecks": true,"resolveJsonModule": true},"exclude": ["node_modules","dist"]}
The text was updated successfully, but these errors were encountered:
Hey would it be ok if we introduced a jsonconfig.json? This would allow tsserver the LSP to better enforce typesafety in the code base. It basically allows your editor to spot errors more easily.
Here is a proposed example that of something I'd like to see in regards to the rules if we were to introduce this.
The text was updated successfully, but these errors were encountered: