We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Сейчас tsconfig для react-ui выглядит следующим образом:
tsconfig
react-ui
{ "compilerOptions": { "baseUrl": "./packages", "sourceMap": true, "module": "commonjs", "strict": true, "jsx": "react", "experimentalDecorators": true, "target": "es5", "lib": ["es2017", "es2015", "dom"], "importHelpers": true, "declaration": true, "esModuleInterop": true, "noUnusedLocals": true, "skipLibCheck": true, "isolatedModules": true } }
Предлагаю дополнить список опций:
noImplicitOverride
override
class SomeComponent { show() { ... } hide() { ... } toggle() { } } class SpecializedComponent extends SomeComponent { override show() { ... } override hide() { ... } showWithTransition() { } }
noImplicitReturns
function lookupHeadphonesManufacturer(color: "blue" | "black"): string { if (color === "blue") { return "beats"; } else { "bose"; // Не возвращает значение } }
forceConsistentCasingInFileNames
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Сейчас
tsconfig
дляreact-ui
выглядит следующим образом:Предлагаю дополнить список опций:
noImplicitOverride
: заставляет указывать ключевое словоoverride
для полей класса, которые перезаписывают поля расширяемого класса.noImplicitReturns
: проверяет, что все варианты в функции возвращают значение.forceConsistentCasingInFileNames
: удостоверяется в том, что все файлы имеют консистентный кейсинг при экспорте/импорте. Подробнее в документации.The text was updated successfully, but these errors were encountered: