mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-04 01:09:20 +02:00
21 lines
463 B
JSON
21 lines
463 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/nprogress.ts",
|
|
"src/prism-include-languages.ts",
|
|
"src/theme",
|
|
"src/*.d.ts"
|
|
],
|
|
"exclude": ["**/__tests__/**"]
|
|
}
|