aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/tsconfig.json')
-rw-r--r--packages/website/tsconfig.json5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/website/tsconfig.json b/packages/website/tsconfig.json
index 34171b51e..6421cd459 100644
--- a/packages/website/tsconfig.json
+++ b/packages/website/tsconfig.json
@@ -8,7 +8,12 @@
"allowJs": true,
"strictNullChecks": false,
"noImplicitThis": false,
+ // tsconfig.json at the monorepo root contains some options required for
+ // project references which do not work for website. We override those
+ // options here.
"declaration": false,
+ "declarationMap": false,
+ "composite": false,
"paths": {
"*": ["node_modules/@types/*", "*"]
}