tsconfig.json 280 B

123456789101112131415
  1. {
  2. "extends": "../../tsconfig",
  3. "compilerOptions": {
  4. "lib": ["es2017", "dom"],
  5. "outDir": "./",
  6. "rootDir": "./src",
  7. "tsBuildInfoFile": "./tsconfig.tsbuildinfo"
  8. },
  9. "include": [
  10. "src/**/*.ts"
  11. ],
  12. "references": [
  13. { "path": "../workbox-core/" }
  14. ]
  15. }