mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-04 17:28:57 +02:00
21 lines
460 B
JSON
21 lines
460 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"composite": true,
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./lib/.tsbuildinfo-client",
|
|
"rootDir": "src",
|
|
"outDir": "lib",
|
|
"moduleResolution": "bundler",
|
|
"module": "esnext",
|
|
"target": "esnext"
|
|
},
|
|
"include": [
|
|
"src/theme/",
|
|
"src/*.d.ts",
|
|
"src/registerSw.ts",
|
|
"src/renderReloadPopup.tsx"
|
|
],
|
|
"exclude": ["**/__tests__/**"]
|
|
}
|