“Please add a @NgModule annotation” Error on Angular2

后端 未结 4 556
慢半拍i
慢半拍i 2021-02-08 12:20

I have made a custom angular2(5.0.x) module that looks like this :

import { GuageService } from \'./services/guage.service\';
import { NgModule } from \'@angular         


        
相关标签:
4条回答
  • 2021-02-08 12:58

    Please add "emitDecoratorMetadata": true in the compilerOptions of tsconfig.json of your gauge module

    0 讨论(0)
  • 2021-02-08 13:06

    If you are using Angular 5.0 you need to add "annotationsAs": "decorators" to the "angularCompilerOptions" for your package. Angular 5 introduced new optimizations and by default the decorators are removed on compile because they are not needed at runtime. This does not work for packages as you already discovered. You can read about this in the Angular 5 announcement blog the "Build Optimizer" paragraph mentions this. Version 5.0.0 of Angular Now Available

    I use this settings in my angular packages:

    "angularCompilerOptions": {
          "skipTemplateCodegen": true,
          "skipMetadataEmit": false,
          "strictMetadataEmit": true,
          "annotationsAs": "decorators"
       }
    
    0 讨论(0)
  • 2021-02-08 13:15

    I had the same problem. With angular 5+ and angular cli 1.5 it says that your code is not compatible and also your library is scoped package. I have managed to fix it with adding

     export * from './your-path'
    

    In all my files (exporting everything from my library).

    As i understood its you import as 3 party library You can try to run the application with

     ng serve --preserve-symlinks
    

    also add flatModuleId in src/tsconfig.es5.json accordingly:

    "flatModuleId": "@scope/library-name"
    

    Link to github here

    There is issue on github for more information

    0 讨论(0)
  • 2021-02-08 13:17

    This is most likely an issue with the way your npm package is being created. In your package.json for your GuageModule are you defining a main? This should point to the entry point to your npm package. Here is an example of mine.

    "main": "./dist/module.js",
    

    Then if you want typings from GuageModule in your main app you'll need to go to your tsconfig.json and under compilerOptions set declaration to be true to generate the typings files.

    "compilerOptions": {
      ...
      "declaration": true
      ...
    },
    

    Then finally in your package.json you will need to point to the entry point for your typings file.

    "types": "./src/app/layout.module.d.ts"
    

    Now you should be able to import your module and have typings on the module that you imported. Hope this helps!

    0 讨论(0)
提交回复
热议问题