docusaurus/packages/docusaurus-plugin-pwa/tsconfig.json
Joshua Chen b4d93b9bd0
chore: upgrade to TS 4.7, compile with NodeNext (#7586)
Co-authored-by: sebastienlorber <lorber.sebastien@gmail.com>
2022-06-15 19:15:11 +02:00

23 lines
459 B
JSON

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