summaryrefslogtreecommitdiff
path: root/packages/web-util/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/web-util/tsconfig.json')
-rw-r--r--packages/web-util/tsconfig.json30
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/web-util/tsconfig.json b/packages/web-util/tsconfig.json
new file mode 100644
index 000000000..a315dda1c
--- /dev/null
+++ b/packages/web-util/tsconfig.json
@@ -0,0 +1,30 @@
+{
+ "compilerOptions": {
+ "composite": true,
+ "declaration": true,
+ "declarationMap": true,
+ "target": "ES2020",
+ "module": "Node16",
+ "jsx": "react",
+ "jsxFactory": "h",
+ "jsxFragmentFactory": "Fragment",
+ "moduleResolution": "Node16",
+ "sourceMap": true,
+ "lib": ["DOM", "ES2020"],
+ "outDir": "lib",
+ "preserveSymlinks": true,
+ "skipLibCheck": true,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "strict": true,
+ "strictPropertyInitialization": false,
+ "noImplicitAny": true,
+ "noImplicitThis": true,
+ "incremental": true,
+ "esModuleInterop": true,
+ "importHelpers": true,
+ "rootDir": "./src",
+ "typeRoots": ["./node_modules/@types"]
+ },
+ "include": ["src/**/*"]
+}