From 9e5e3fc2f58699e713e0b9bc79dab6cf4c45857c Mon Sep 17 00:00:00 2001 From: Bauke Date: Sat, 20 May 2023 14:49:09 +0200 Subject: [PATCH] Add the tsconfig. --- tsconfig.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..0f4cf3f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "esModuleInterop": true, + "jsx": "react-jsx", + "jsxImportSource": "preact", + "lib": [ + "DOM", + "ES2022" + ], + "module": "ES2022", + "moduleResolution": "Node", + "resolveJsonModule": true, + "strict": true, + "target": "ES2022" + }, + "include": [ + "source" + ] +}