We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab11ebb commit 39c2efdCopy full SHA for 39c2efd
2 files changed
packages/react/__dtslint__/styled.ts
@@ -4,7 +4,7 @@ import * as React from 'react';
4
5
import { css } from '@linaria/core';
6
7
-import { styled } from '../src';
+import { styled } from '..';
8
9
// eslint-disable-next-line @typescript-eslint/no-unused-vars
10
function isExtends<C, T>(arg1?: C, arg2?: T): C extends T ? 'extends' : never {
packages/react/__dtslint__/tsconfig.json
@@ -8,6 +8,8 @@
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
11
+ "noUncheckedIndexedAccess": true,
12
+ "noPropertyAccessFromIndexSignature": true,
13
"noEmit": true,
14
15
"baseUrl": "./"
0 commit comments