docusaurus/packages/docusaurus/tsconfig.server.json
Joshua Chen 44d73f7230
refactor: make JS executables included in the tsconfig for editor hints (#6861)
* refactor: make JS executables included in the tsconfig for editor hints

* oops
2022-03-06 23:07:23 +08:00

13 lines
272 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"incremental": true,
"tsBuildInfoFile": "./lib/.tsbuildinfo",
"rootDir": "src",
"outDir": "lib",
"allowJs": true
},
"include": ["src"],
"exclude": ["**/__tests__/**/*", "src/client"]
}