mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-09 04:25:57 +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";
|
import Explorer from "./Explorer/Explorer";
|
||||||
|
|
||||||
declare global {
|
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 {
|
interface Window {
|
||||||
/**
|
/**
|
||||||
* @deprecated
|
* @deprecated
|
||||||
|
|||||||
@@ -21,7 +21,8 @@
|
|||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"noEmit": true,
|
"noEmit": true,
|
||||||
"types": ["jest", "playwright", "jest-playwright-preset", "expect-playwright"],
|
"types": ["jest", "playwright", "jest-playwright-preset", "expect-playwright"],
|
||||||
"baseUrl": "src"
|
"baseUrl": "src",
|
||||||
|
"skipLibCheck": true
|
||||||
},
|
},
|
||||||
"typedocOptions": {
|
"typedocOptions": {
|
||||||
"entryPoints": [
|
"entryPoints": [
|
||||||
@@ -43,7 +44,7 @@
|
|||||||
"./test/testExplorer/TestExplorer.ts",
|
"./test/testExplorer/TestExplorer.ts",
|
||||||
"./**/*.ts",
|
"./**/*.ts",
|
||||||
"./**/*.tsx",
|
"./**/*.tsx",
|
||||||
"src/custom.d.ts"
|
"./src/*.d.ts"
|
||||||
],
|
],
|
||||||
"exclude": ["./src/**/__mocks__/**/*"]
|
"exclude": ["./src/**/__mocks__/**/*"]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user