Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
chore: remove custom skipLibCheck (#894)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
abdonrd and kodiakhq[bot] committed Nov 24, 2021
1 parent 0dadc0a commit 52af223
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/typings/resources.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license
*
* Copyright IBM Corp. 2019
* Copyright IBM Corp. 2019, 2021
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
Expand All @@ -11,9 +11,11 @@ declare module '*.scss';

declare module '*.mdx' {
let MDXComponent: (props: any) => JSX.Element;
// @ts-ignore
export default {
parameters: {
docs: {
// @ts-ignore
container: JSX.Element,
page: MDXComponent,
},
Expand Down
4 changes: 3 additions & 1 deletion src/typings/vendor.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license
*
* Copyright IBM Corp. 2019
* Copyright IBM Corp. 2019, 2021
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
Expand Down Expand Up @@ -31,12 +31,14 @@ declare module 'carbon-components/es/globals/js/misc/on' {
type: K,
listener: (this: EventTarget, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions
// @ts-ignore
): Handle;
function on(
target: EventTarget,
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions
// @ts-ignore
): Handle;
export default on;
}
1 change: 0 additions & 1 deletion tsconfig-angular-esm2015.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"moduleResolution": "node",
"outDir": "./es/directives-angular/esm2015",
"rootDir": "./src/directives-angular",
"skipLibCheck": true,
"lib": ["dom", "es2015"]
},
"files": ["./src/directives-angular/index.ts"],
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": false,
"jsx": "react",
Expand Down

0 comments on commit 52af223

Please sign in to comment.