-
Notifications
You must be signed in to change notification settings - Fork 3
/
base.tsconfig.json
40 lines (39 loc) · 1.2 KB
/
base.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
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react",
"lib": ["dom", "esnext"],
"moduleResolution": "node",
"module": "ESNext",
"types": ["vite/client", "node"],
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strict": true,
"noUnusedLocals": true,
"pretty": true,
"skipLibCheck": true,
"target": "ES6",
"resolveJsonModule": true,
"declaration": true,
"sourceMap": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"newLine": "crlf",
"baseUrl": ".",
"paths": {
"@accelbyte/validator": ["../../packages/validator/src"],
"@accelbyte/error-translator": ["../../packages/error-translator/src"],
"crypto": ["node_modules/crypto-browserify"],
"@accelbyte/sdk/*": ["../../packages/sdk/src/*"],
"@accelbyte/sdk": ["../../packages/sdk/src"],
"~/iam-definitions/*": ["../../packages/sdk-iam/src/generated-definitions/*"]
}
},
"references": [{ "path": "../../packages/sdk/" }],
"exclude": ["node_modules"]
}