I have the following file structure
|__ app1/
| |__ tsconfig.json
|__ utilities/
| |__ files.ts
|__ base-tsconfig.json
In base-tsconfig.json
I have set the paths
property as following
"compilerOptions": {
"baseUrl": ".",
"paths": {
"utils/*": ["utilities/*"]
}
}
and in tsconfig.json
it looks as follow
{
"extends": "../base-tsconfig",
}
That should be enough right? I am still getting below message though.
Cannot find module 'utils'