From 72f129472044a97ffa06136da0a473581914c7e9 Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Sat, 21 Mar 2026 12:41:49 +0000 Subject: Initial Commit Set up Astro and shadcn/ui --- tsconfig.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..c94dcf5 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,13 @@ +{ + "extends": "astro/tsconfigs/strict", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"], + "compilerOptions": { + "jsx": "react-jsx", + "jsxImportSource": "react", + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + } +} -- cgit