generated from incubrain/nuxt3-saas-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
41 lines (38 loc) · 971 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"files": [],
"compilerOptions": {
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"#layers/*": ["layers/*"],
"@ib/*": ["libs/*/src"],
"@astronera/*": ["libs/*/src/index.ts"],
}
},
"references": [
// Applications
{ "path": "apps/api" },
{ "path": "apps/chrome-extension" },
// Nuxt Applications
{ "path": "apps/website" },
{ "path": "apps/app" },
{ "path": "apps/admin" },
{ "path": "apps/cms" },
{ "path": "apps/auth" },
// Nuxt Layers
{ "path": "layers/base" },
{ "path": "layers/crud" },
{ "path": "layers/advert" },
{ "path": "layers/supabase" },
{ "path": "layers/logging" },
// Shared Libraries
{ "path": "libs/logger" },
{ "path": "libs/cache" },
{ "path": "libs/db" },
{ "path": "libs/core" },
{ "path": "libs/testing" },
{ "path": "apps/api" }
],
"include": ["prettier.config.mjs"],
"exclude": ["node_modules", "dist"]
}