fix(ui): remove excludes from tsconfig

This commit is contained in:
Łukasz Mierzwa
2021-05-24 12:33:12 +01:00
committed by Łukasz Mierzwa
parent 579e4bfd53
commit da9d9085cc
6 changed files with 5 additions and 10 deletions

View File

@@ -1,5 +1,3 @@
import React from "react";
import { storiesOf } from "@storybook/react";
import fetchMock from "fetch-mock";

View File

@@ -1,5 +1,3 @@
import React from "react";
import { storiesOf } from "@storybook/react";
import { MockSilence } from "../../__fixtures__/Alerts";

View File

@@ -1,5 +1,3 @@
import React from "react";
import { storiesOf } from "@storybook/react";
import {

View File

@@ -1,4 +1,4 @@
import React, { FC } from "react";
import { FC } from "react";
import { storiesOf } from "@storybook/react";

View File

@@ -1,4 +1,4 @@
import React, { FC } from "react";
import { FC } from "react";
import fetchMock from "fetch-mock";
@@ -249,11 +249,13 @@ storiesOf("SilenceModal", module)
name: "thisIsAveryLongNameToTestMatcherWrapping",
value: "valueIsAlsoAbitLong",
isRegex: false,
isEqual: true,
});
silence.matchers.push({
name: "alertname",
value: "(foo1|foo2|foo3|foo4)",
isRegex: true,
isEqual: true,
});
silence.id = `silence${index}`;
silences.push({

View File

@@ -18,6 +18,5 @@
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true
},
"include": ["src"],
"exclude": ["**/*.stories.tsx"]
"include": ["src"]
}