forked from saleor/saleor-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 921 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
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
// Migration to strict null checks is in progress.
// https://github.com/saleor/saleor-dashboard/issues/2584
"strictNullChecks": false,
"esModuleInterop": true,
"jsx": "react",
"lib": ["es2020", "dom", "esnext"],
"skipLibCheck": true,
"sourceMap": true,
"target": "ES2020",
"module": "es2020",
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"downlevelIteration": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictBindCallApply": true,
"useUnknownInCatchVariables": true,
"paths": {
"@assets/*": ["assets/*"],
"@locale/*": ["locale/*"],
"@dashboard/*": ["src/*"],
"@test/*": ["testUtils/*"]
},
"resolveJsonModule": true
},
"exclude": ["node_modules", "cypress"]
}