aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/docs/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/docs/tsconfig.json')
-rw-r--r--subprojects/docs/tsconfig.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/subprojects/docs/tsconfig.json b/subprojects/docs/tsconfig.json
new file mode 100644
index 00000000..5b32bb0e
--- /dev/null
+++ b/subprojects/docs/tsconfig.json
@@ -0,0 +1,34 @@
1/*
2 * Copyright (c) Facebook, Inc. and its affiliates.
3 * Copyright (c) 2024 The Refinery Authors <https://refinery.tools/>
4 *
5 * SPDX-License-Identifier: MIT AND EPL-2.0
6 *
7 * FIle based on
8 * https://github.com/facebook/docusaurus/blob/73016d4936164ba38d4b86ec2aa8c168b5904a21/packages/docusaurus-tsconfig/tsconfig.json
9 * but copied instead of adding an `extends` declaration to let SonarQube see its contents.
10 */
11{
12 "extends": "../../tsconfig.base.json",
13 "compilerOptions": {
14 "jsx": "preserve",
15 "module": "esnext",
16 "moduleResolution": "bundler",
17 "lib": ["DOM", "DOM.Iterable", "ES2022"],
18 "types": [
19 "node",
20 "@docusaurus/module-type-aliases",
21 "@docusaurus/theme-classic"
22 ],
23 "baseUrl": ".",
24 "paths": {
25 "@site/*": ["./*"]
26 }
27 },
28 "include": ["."],
29 "exclude": [
30 ".docusaurus",
31 ".yarn",
32 "build"
33 ]
34}