summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2025-11-04 00:18:30 -0800
committerKai Stevenson <kai@kaistevenson.com>2025-11-04 00:28:40 -0800
commit47ea3a63474e40c12164c1ebf4eec3121c3b217c (patch)
tree26f06c243fc355898abf1218b5e978012f75b77c /tsconfig.json
parent1b364d51b8d18936bae913e999316ae171c39c74 (diff)
setup for publishing
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..e6c7c8d
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,15 @@
+{
+ "include": ["src/**/*.ts"],
+ "compilerOptions": {
+ "target": "ES2022",
+ "module": "nodenext",
+ "moduleResolution": "nodenext",
+ "lib": ["ES2022", "dom"],
+ "outDir": "dist",
+ "strict": true,
+ "esModuleInterop": true,
+ "forceConsistentCasingInFileNames": true,
+ "declaration": true,
+ "declarationMap": true
+ }
+}