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
Bug Description
tsconfig.json requires editing for Context step to not throw compiler errors.
I was just following the tutorial and got to the context step and received the following errors
ERROR in C:\dev\pixi\pixi-hotwire\src\index.ts
./src/index.ts 69:12-18
[tsl] ERROR in C:\dev\pixi\pixi-hotwire\src\index.ts(69,13)
TS6133: 'myName' is declared but its value is never read.
ERROR in C:\dev\pixi\pixi-hotwire\src\index.ts
./src/index.ts 70:11-17
[tsl] ERROR in C:\dev\pixi\pixi-hotwire\src\index.ts(70,12)
TS2564: Property 'method' has no initializer and is not definitely assigned in the constructor.
To get it to compile and return the expected console output I had to set
"strict" and "noUnusedLocals" to false in tsconfig.json.
Apologies if I missed a step.
The text was updated successfully, but these errors were encountered:
Bug Description
tsconfig.json requires editing for Context step to not throw compiler errors.
I was just following the tutorial and got to the context step and received the following errors
To get it to compile and return the expected console output I had to set
"strict" and "noUnusedLocals" to false in tsconfig.json.
Apologies if I missed a step.
The text was updated successfully, but these errors were encountered: