-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
27 lines (27 loc) · 899 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"jsx": "react-jsx",
"jsxImportSource": "react",
"strictNullChecks": true,
"paths": {
"~/*": ["./src/*"],
"~api/*": ["./src/pages/api/*"],
"~components/*": ["./src/components/*"],
"~consts": ["./src/consts.ts"],
"~icons/*": ["./src/icons/*"],
"~layouts/*": ["./src/layouts/*"],
"~rpc/*": ["./rpc-server/*"],
"~services/*": ["./src/services/*"],
"~state": ["./src/components/state"],
"~state/*": ["./src/components/state/*"],
"~styles/*": ["./src/styles/*"],
"~utils": ["./src/utils"],
"~utils/*": ["./src/utils/*"],
"~db/*": ["./db/*"]
},
"types": ["@astrojs/db", "@astrojs/db/dist/core/integration", "vite-plugin-svgr/client"]
},
"include": ["src/**/*", ".astro", "db", "rpc-server", "test", "tests"]
}