From ef004b7aaccad0babddc879d0d5e0e6e170a042a Mon Sep 17 00:00:00 2001 From: Katja Lutz Date: Wed, 22 Jun 2022 19:08:58 +0200 Subject: [PATCH] feat: add tsconfig.json --- tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..10a7e79 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "strict": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "node", + "jsxImportSource": "solid-js", + "jsx": "preserve", + "types": ["vite/client", "unplugin-icons/types/solid"], + "baseUrl": "./", + "paths": { + "~/*": ["./src/*"] + } + } +}