tsconfig.worker.json 343 B

123456789101112131415161718
  1. /* To learn more about this file see: https://angular.io/config/tsconfig. */
  2. {
  3. "extends": "./tsconfig.json",
  4. "compilerOptions": {
  5. "outDir": "./out-tsc/worker",
  6. "lib": [
  7. "es2018",
  8. "webworker"
  9. ],
  10. "typeRoots": [
  11. "node_modules/@types"
  12. ],
  13. "types": []
  14. },
  15. "include": [
  16. "src/**/*.worker.ts"
  17. ]
  18. }