Angular 8 – Lazy loading modules : Error TS1323: Dynamic import is only supported when ‘–module’ flag is ‘commonjs’ or ‘esNext’
You are using dynamic import so you have to change your tsconfig.json like this to target your code to esnext module { “compileOnSave”: false, “compilerOptions”: { “baseUrl”: “./”, “outDir”: “./dist/out-tsc”, “sourceMap”: true, “declaration”: false, “module”: “esnext”, // add this line “moduleResolution”: “node”, “emitDecoratorMetadata”: true, “experimentalDecorators”: true, “importHelpers”: true, “target”: “es2015”, “typeRoots”: [ “node_modules/@types” ], “lib”: … Read more