fix(ui): remove excludes from tsconfig

This commit is contained in:
Łukasz Mierzwa
2021-05-24 12:43:14 +01:00
committed by Łukasz Mierzwa
parent 579e4bfd53
commit da9d9085cc
6 changed files with 5 additions and 10 deletions
@@ -1,5 +1,3 @@
import React from "react";
import { storiesOf } from "@storybook/react";
import fetchMock from "fetch-mock";
@@ -1,5 +1,3 @@
import React from "react";
import { storiesOf } from "@storybook/react";
import { MockSilence } from "../../__fixtures__/Alerts";
@@ -1,5 +1,3 @@
import React from "react";
import { storiesOf } from "@storybook/react";
import {
@@ -1,4 +1,4 @@
import React, { FC } from "react";
import { FC } from "react";
import { storiesOf } from "@storybook/react";
@@ -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({
+1 -2
View File
@@ -18,6 +18,5 @@
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true
},
"include": ["src"],
"exclude": ["**/*.stories.tsx"]
"include": ["src"]
}