-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
45 lines (45 loc) · 1.32 KB
/
tsconfig.base.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
42
43
44
45
{
"compileOnSave": false,
"compilerOptions": {
"target": "es2017",
"lib": ["dom", "dom.iterable", "esnext"],
"checkJs": false,
"allowJs": false,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
"@visalytics/interfaces": ["libs/interfaces/src/index.ts"],
"@visalytics/modules/accounts/web": [
"libs/modules/accounts/web/src/index.ts"
],
"@visalytics/modules/accounts/web/nextjs": [
"libs/modules/accounts/web/src/lib/nextjs/index.ts"
],
"@visalytics/modules/applications/api": [
"libs/modules/applications/api/src/index.ts"
],
"@visalytics/modules/applications/web": [
"libs/modules/applications/web/src/index.ts"
],
"@visalytics/shared-services/db": [
"libs/shared-services/db/src/index.ts"
],
"@visalytics/shared-services/trpc": [
"libs/shared-services/trpc/src/index.ts"
],
"@visalytics/ui": ["libs/ui/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}