Cannot find module 'src/index.ts' Require stack: - /app/[eval].ts code example
Example: error TS2307: Cannot find module 'path' or its corresponding type declarations.
go to 'tsconfig.app.json' and add "node" to types:
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": ["node"] <------------ ADD "node" HERE
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.d.ts"
]
}