aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-config/base.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/typescript-config/base.json')
-rw-r--r--packages/typescript-config/base.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/typescript-config/base.json b/packages/typescript-config/base.json
new file mode 100644
index 0000000..0f80cfd
--- /dev/null
+++ b/packages/typescript-config/base.json
@@ -0,0 +1,20 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "display": "Default",
+ "compilerOptions": {
+ "declaration": true,
+ "declarationMap": true,
+ "esModuleInterop": true,
+ "incremental": false,
+ "isolatedModules": true,
+ "lib": ["es2022", "DOM", "DOM.Iterable"],
+ "module": "NodeNext",
+ "moduleDetection": "force",
+ "moduleResolution": "NodeNext",
+ "noUncheckedIndexedAccess": true,
+ "resolveJsonModule": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "target": "ES2022"
+ }
+}