-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
Description
What version of Remix are you using?
1.7.6
Steps to Reproduce
- Create Remix app with yarn/your tool, I used blues stack
- Install TypeScript 4.9.3
- Create a type, something like
type SomethingCool = {
foo: number;
}- Try to create an object and use the new
satisfieskeyword withSomethingCool - Try to build
Expected Behavior
The project builds
Actual Behavior
The project doesn't build and there's an error being thrown
$ remix build
Building Remix app in production mode...
✘ [ERROR] [plugin browser-route-module] Build failed with 1 error:
app/root.tsx:32:4: ERROR: Expected ";" but found "satisfies"
jmezzacappa, edgars-sirokovs and Aktyn