version 2 of my website
1{
2 "extends": "astro/tsconfigs/strict",
3 "include": [
4 ".astro/types.d.ts",
5 "**/*"
6 ],
7 "exclude": [
8 "dist"
9 ],
10 "compilerOptions": {
11 "module": "preserve",
12 "jsx": "react-jsx",
13 "jsxImportSource": "react",
14 "baseUrl": ".",
15 "paths": {
16 "@/*": [
17 "src/*"
18 ]
19 }
20 }
21}