docusaurus/packages/docusaurus-plugin-pwa/tsconfig.worker.json
Joshua Chen 0c8e57de67
refactor(pwa): migrate sw.js to TS (#7467)
* refactor(pwa): migrate sw.js to TS

* add gitattributes
2022-05-23 14:22:56 +08:00

17 lines
399 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"noEmit": false,
"composite": true,
"incremental": true,
"lib": ["webworker", "esnext"],
"tsBuildInfoFile": "./lib/.tsbuildinfo-worker",
"rootDir": "src",
"outDir": "lib",
"module": "esnext",
"target": "esnext",
"types": ["node"]
},
"include": ["src/sw.ts"],
"exclude": ["**/__tests__/**"]
}