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
{{ message }}
This repository was archived by the owner on Mar 5, 2023. It is now read-only.
I am using path aliases quite heavily. An example of my
tsconfig.json.{ "compilerOptions": { "baseUrl": "src", "paths": { "~machinery/graphql": ["generated/machinerygraphql"], "~machinery/*": ["*"], "~tools/*": ["../../tools/src/*"] }, }, }Then in the code I can do eg.
import { getNow } from '~tools/timing'. Works like a charm with other tooling (after some hassle).However, running
xstate-codegenI am gettingError: Cannot find module '~tools/timing'.I suppose based on the #21 (comment) it should be solved when transition is done?