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

chore: remove custom skipLibCheck #894

Merged
merged 2 commits into from
Nov 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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