summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorMathias Magnusson <mathias@magnusson.space>2025-08-14 14:12:05 +0200
committerMathias Magnusson <mathias@magnusson.space>2025-08-14 14:12:05 +0200
commit59f99c59d577ac4c640bee676856969ec035bcb6 (patch)
tree02704db160b20505d31e5a494939a2e12c72f44b /tsconfig.json
downloaduneven-59f99c59d577ac4c640bee676856969ec035bcb6.tar.gz
Initial commit
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..b55223e
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,16 @@
+{
+ "compilerOptions": {
+ "target": "ESNext",
+ "module": "NodeNext",
+ "strict": true,
+ "verbatimModuleSyntax": true,
+ "skipLibCheck": true,
+ "types": [
+ "node"
+ ],
+ "jsx": "react-jsx",
+ "jsxImportSource": "hono/jsx",
+ "outDir": "./dist"
+ },
+ "exclude": ["node_modules"]
+}