saleor-dashboard/tsconfig.json
Michał Droń e900f2e1df
Fix strict null checks in webhooks (#2678)
* Fix strict null errors in webhooks

* Disable strict null checks

* Update snapshots

* Add migration comment in tsconfig

* Fix 404 on loading

* Fix loading case
2022-12-01 14:42:18 +01:00

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"]
}