tsconfig.json 348 B

1234567891011121314
  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. "include": ["src/**/*.ts"],
  13. "references": [{"path": "../workbox-build/"}]
  14. }