-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 1.02 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
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@app/packages/*": ["./packages/src/*"],
"@app/web-app/*": ["./web-app/src/*"],
"@app/mobile-app/*": ["./mobile-app/src/*"],
"packages/*": ["./packages/src/*"],
"web-app/*": ["./web-app/src/*"],
"mobile-app/*": ["./mobile-app/src/*"]
},
"noEmit": true,
"module": "commonjs",
"allowJs": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowUnreachableCode": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"jsx": "react",
"moduleResolution": "node",
"target": "esnext"
},
"exclude": ["node_modules", "*.js"]
}