From ed5af0e6eafca83589252695451df305fc2fa809 Mon Sep 17 00:00:00 2001 From: Hyeungshik Jung Date: Sun, 21 Jun 2020 17:28:47 +0900 Subject: [PATCH] Fix lint error --- examples/with-storybook-typescript/tsconfig.json | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/examples/with-storybook-typescript/tsconfig.json b/examples/with-storybook-typescript/tsconfig.json index 48ca14af0b887..c5d53d8983d19 100644 --- a/examples/with-storybook-typescript/tsconfig.json +++ b/examples/with-storybook-typescript/tsconfig.json @@ -1,11 +1,7 @@ { "compilerOptions": { "target": "es5", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": false, @@ -18,12 +14,6 @@ "isolatedModules": true, "jsx": "preserve" }, - "exclude": [ - "node_modules" - ], - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx" - ] + "exclude": ["node_modules"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"] }