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/*"] + } + } +}