When we import some modules to certain function or component, How to use absolute path for the imports ?(This implementation is related to some actions and triggers that we are implemented using type script and used jest framework for unit testing. )
I already tried some solutions on internet with some configuration changes, but still didn’t found a solution.
https://medium.com/@fmoessle/typescript-paths-with-ts-node-ts-node-dev-and-jest-671deacf6428
assume we imoprt a module named logincomponent from ,
import { logincomponent } from 'api';
and when we run the zapier test, it mention that module not found named logincomponent.
I need to know how the configuration need to be changed in zapier cli using type script for use absolute paths imports into my implementation.