storybook/addons/a11y/tsconfig.json
Gaëtan Maisse cf84eb70bf refactor(a11y): activate strictNullChecks TS compiler option
Activate strictNullChecks and fix TS errors related to it
2019-12-18 21:43:51 +01:00

19 lines
368 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"types": ["webpack-env"],
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"strictFunctionTypes": true,
"strictNullChecks": true
},
"include": [
"src/**/*"
],
"exclude": [
"src/__tests__/**/*"
]
}