tsconfig.json 638 B

12345678910111213141516171819202122
  1. {
  2. "extends": "../../tsconfig",
  3. "compilerOptions": {
  4. "esModuleInterop": true,
  5. "module": "CommonJS",
  6. "outDir": "./build",
  7. "resolveJsonModule": true,
  8. "rootDir": "./src",
  9. "target": "ES2018",
  10. "tsBuildInfoFile": "./tsconfig.tsbuildinfo"
  11. },
  12. "files": ["src/cdn-details.json"],
  13. "include": ["src/**/*.ts", "src/schema/*.json"],
  14. "references": [
  15. {"path": "../workbox-background-sync/"},
  16. {"path": "../workbox-broadcast-update/"},
  17. {"path": "../workbox-cacheable-response/"},
  18. {"path": "../workbox-core/"},
  19. {"path": "../workbox-expiration/"},
  20. {"path": "../workbox-google-analytics/"}
  21. ]
  22. }