mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-26 12:21:23 +00:00
skipLibCheck added
This commit is contained in:
8
src/global.d.ts
vendored
8
src/global.d.ts
vendored
@@ -1,14 +1,6 @@
|
||||
import { PageWaitForSelectorOptions, PlaywrightMatchers } from "expect-playwright";
|
||||
import Explorer from "./Explorer/Explorer";
|
||||
|
||||
declare global {
|
||||
namespace jest {
|
||||
interface Matchers<R> extends PlaywrightMatchers<R> {
|
||||
toHaveFocus(selector: string, options?: PageWaitForSelectorOptions): Promise<R>;
|
||||
toHaveTextContent(htmlElement: string): object;
|
||||
toHaveValue(value: string | string[] | number): object;
|
||||
}
|
||||
}
|
||||
interface Window {
|
||||
/**
|
||||
* @deprecated
|
||||
|
||||
@@ -21,7 +21,8 @@
|
||||
"resolveJsonModule": true,
|
||||
"noEmit": true,
|
||||
"types": ["jest", "playwright", "jest-playwright-preset", "expect-playwright"],
|
||||
"baseUrl": "src"
|
||||
"baseUrl": "src",
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"typedocOptions": {
|
||||
"entryPoints": [
|
||||
@@ -43,7 +44,7 @@
|
||||
"./test/testExplorer/TestExplorer.ts",
|
||||
"./**/*.ts",
|
||||
"./**/*.tsx",
|
||||
"src/custom.d.ts"
|
||||
"./src/*.d.ts"
|
||||
],
|
||||
"exclude": ["./src/**/__mocks__/**/*"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user