saleor-dashboard/tsconfig.json
poulch bf2a2035d3
Fix strict null check in Apps (#2911)
* Fix apps strict null checks

* Set strictNullChecks to false

* Improve strict null checks

* Replace typ to Extension
2022-12-29 13:51:54 +01:00

28 lines
768 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,
"useUnknownInCatchVariables": true,
"paths": {
"@assets/*": ["assets/*"],
"@locale/*": ["locale/*"],
"@saleor/*": ["src/*"],
"@test/*": ["testUtils/*"]
},
"resolveJsonModule": true
},
"exclude": ["node_modules", "cypress"]
}