aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/dev-tools-pages/tsconfig.json')
-rw-r--r--packages/dev-tools-pages/tsconfig.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/dev-tools-pages/tsconfig.json b/packages/dev-tools-pages/tsconfig.json
new file mode 100644
index 000000000..f5d4f62c2
--- /dev/null
+++ b/packages/dev-tools-pages/tsconfig.json
@@ -0,0 +1,21 @@
+{
+ "extends": "../../tsconfig",
+ "compilerOptions": {
+ "allowSyntheticDefaultImports": true,
+ "outDir": "./transpiled/",
+ "jsx": "react",
+ "baseUrl": "./",
+ // 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,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "composite": false,
+ "paths": {
+ "*": ["node_modules/@types/*", "*"]
+ }
+ },
+ "include": ["./ts/**/*"]
+}