Dmytro Shepeliev

Results 7 comments of Dmytro Shepeliev

@erikjalevik I have a decision, but my webstorm breaks, will answer you once success

@erikjalevik what I did: my `tsconfig.json` ``` { "compilerOptions": { "module": "commonjs", "emitDecoratorMetadata": true, "experimentalDecorators": true, "esModuleInterop": true, "target": "esnext", "noImplicitAny": true, "moduleResolution": "node", "sourceMap": true, "outDir": "dist", "baseUrl": ".",...

@erikjalevik https://github.com/ShepelievD/tspath check it, example usage `tspath -f ./dist -c tsconfig.path.json` Yeah, I know that is tricky, but I need it urgent :)

@kaanoo2904 yes, removed it, because decided to use https://github.com/ilearnio/module-alias `package.json`: ``` { ... "_moduleAliases": { "@config": "dist/config", "@models": "dist/models", "@routes": "dist/routes", "@types": "dist/types", "@utils": "dist/utils", "@graphql": "dist/graphql" }, ... }...