복붙노트

[ANGULAR] Angular 5+에서 underpiled typescript로 Repo를 가져 오는 방법 (.spec.ts 파일 제외)

ANGULAR

Angular 5+에서 underpiled typescript로 Repo를 가져 오는 방법 (.spec.ts 파일 제외)

해결법


  1. 1.tsconfig.json을 열고 이것으로 변경하십시오

    tsconfig.json을 열고 이것으로 변경하십시오

    {
      ...
      "compilerOptions": {
       ...
      },      
      "include": [
        "./src",
        "node_modules/example"
      ],
      "exclude" : ...
    }
    
  2. from https://stackoverflow.com/questions/48449948/how-to-import-repo-with-uncompiled-typescript-in-angular-5-and-exclude-spec-t by cc-by-sa and MIT license