
* Fix strict null errors in webhooks * Disable strict null checks * Update snapshots * Add migration comment in tsconfig * Fix 404 on loading * Fix loading case
27 lines
No EOL
727 B
JSON
27 lines
No EOL
727 B
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": ["es2017", "dom", "esnext"],
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"strictBindCallApply": true,
|
|
"paths": {
|
|
"@assets/*": ["assets/*"],
|
|
"@locale/*": ["locale/*"],
|
|
"@saleor/*": ["src/*"],
|
|
"@test/*": ["testUtils/*"]
|
|
},
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": ["node_modules", "cypress"]
|
|
} |