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
13 lines
299 B
JSON
13 lines
299 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./lib/.tsbuildinfo-client",
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"rootDir": "src",
|
|
"outDir": "lib"
|
|
},
|
|
"include": ["src/theme", "src/*.d.ts"]
|
|
}
|