Skip to content

Commit 6695612

Browse files
authored
Merge pull request #19 from agneym/fix-typescript-types
Add types folder to includes
2 parents e9515b2 + 42accb3 commit 6695612

File tree

6 files changed

+3
-7
lines changed

6 files changed

+3
-7
lines changed

playground/src/Draggable/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// @ts-nocheck
21
import React, { FC, ReactNode, useRef, forwardRef } from "react";
32
import { styled } from "goober";
43

playground/src/Editor/EditorSetup.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// @ts-nocheck
21
import React, { FC, Fragment } from "react";
32
import SimpleEditor from "react-simple-code-editor";
43
import Highlight, { defaultProps } from "prism-react-renderer";

playground/src/Playground.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// @ts-nocheck
21
import React, { FC, useState, createElement } from "react";
32
import { useId } from "@reach/auto-id";
43
import { styled, setup, DefaultTheme } from "goober";

playground/src/Result/Console.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// @ts-nocheck
21
import React, { FC } from "react";
32
import { styled } from "goober";
43
import Inspector from "@agney/react-inspector";

playground/src/Result/ErrorDisplay.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// @ts-nocheck
21
import React, { FC } from "react";
32
import { styled } from "goober";
43

playground/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"typeRoots": [
1111
"./node_modules/@types",
1212
"../node_modules/@types",
13-
"./src/types"
13+
"src/types"
1414
]
15-
}
15+
},
16+
"include": ["src/types"]
1617
}

0 commit comments

Comments
 (0)