How to get rid of the warning .ts file is part of the TypeScript compilation but it's unused

后端 未结 16 1160
天命终不由人
天命终不由人 2020-12-30 18:20

I Just updated angular to latest 9.0.0-next.4. I am not using routing but suddenly after updating I keep seeing this warning. How Do I remove this warning

16条回答
  •  忘掉有多难
    2020-12-30 18:58

    02-08-2020

    Ionic 5+ Angular 9+ App.

    Note: see the include section.

    tsconfig.app.json

    {
      "extends": "./tsconfig.json",
      "compilerOptions": {
        "outDir": "./out-tsc/app",
        "types": []
      },
      "files": [
        "src/main.ts",
        "src/polyfills.ts"
      ],
      "include": [
        "src/**/*.d.ts"
      ],
      "exclude": [
        "src/**/*.spec.ts"
      ]
    }
    

提交回复
热议问题