-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
55 lines (48 loc) · 1.54 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"strict": true,
"esModuleInterop": true,
"removeComments": true,
"composite": true,
"declaration": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"useUnknownInCatchVariables": false,
"allowJs": false,
"skipLibCheck": true,
"moduleResolution": "node",
"rootDir": ".",
"outDir": "dist",
"baseUrl": ".",
"types": ["node"],
"paths": {
"@gland/cache": ["./packages/cache"],
"@gland/cache/*": ["./packages/cache/*"],
"@gland/common": ["./packages/common"],
"@gland/common/*": ["./packages/common/*"],
"@gland/config": ["./packages/config"],
"@gland/config/*": ["./packages/config/*"],
"@gland/core": ["./packages/core"],
"@gland/core/*": ["./packages/core/*"],
"@gland/debug": ["./packages/debug"],
"@gland/debug/*": ["./packages/debug/*"],
"@gland/events": ["./packages/events"],
"@gland/events/*": ["./packages/events/*"],
"@gland/testing": ["packages/testing"],
"@gland/testing/*": ["packages/testing/*"],
"@gland/validators": ["./packages/validators"],
"@gland/validators/*": ["./packages/validators/*"]
},
"noImplicitAny": false,
"noUnusedLocals": false,
"strictPropertyInitialization": false,
"noLib": false
},
"include": ["packages/**/*", "test/**/*"],
"preserveSymlinks": true,
"exclude": ["node_modules"]
}