My file structure is organized as follows:
|__ app1/
| |__ tsconfig.json
|__ utilities/
| |__ files.ts
|__ base-tsconfig.json
I have defined the paths
property in base-tsconfig.json
like this:
"compilerOptions": {
"baseUrl": ".",
"paths": {
"utils/*": ["utilities/*"]
}
}
In tsconfig.json
, it looks like this:
{
"extends": "../base-tsconfig",
}
Despite these configurations, I am still encountering the error message below:
Cannot find module 'utils'