docusaurus/packages/docusaurus-plugin-pwa/tsconfig.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

24 lines
485 B
JSON

{
"extends": "../../tsconfig.json",
"references": [
{"path": "./tsconfig.client.json"},
{"path": "./tsconfig.worker.json"}
],
"compilerOptions": {
"noEmit": false,
"incremental": true,
"tsBuildInfoFile": "./lib/.tsbuildinfo",
"module": "commonjs",
"rootDir": "src",
"outDir": "lib"
},
"include": ["src"],
"exclude": [
"src/theme/",
"src/registerSw.ts",
"src/sw.ts",
"src/renderReloadPopup.tsx",
"**/__tests__/**"
]
}