mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 02:08:36 +02:00
* refactor: use TS project references instead of running tsc multiple times * deduplicate * dedup * eliminate --project * add swc config * add target
12 lines
316 B
JSON
12 lines
316 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"references": [{"path": "./tsconfig.client.json"}],
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./lib/.tsbuildinfo",
|
|
"rootDir": "src",
|
|
"outDir": "lib"
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/client", "src/theme", "**/__tests__/**"]
|
|
}
|