mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-25 17:22:50 +00:00
24 lines
485 B
JSON
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__/**"
|
|
]
|
|
}
|