From b0fcbb704982e3773db2614e0fea9b71d3687e49 Mon Sep 17 00:00:00 2001 From: Andy Hanson Date: Fri, 16 Dec 2016 16:06:29 -0800 Subject: [PATCH] Fix react-css-modules tests --- react-css-modules/react-css-modules-tests.tsx | 4 ---- react-css-modules/tsconfig.json | 8 ++++++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/react-css-modules/react-css-modules-tests.tsx b/react-css-modules/react-css-modules-tests.tsx index 32c78eda1a..62a3470dcb 100644 --- a/react-css-modules/react-css-modules-tests.tsx +++ b/react-css-modules/react-css-modules-tests.tsx @@ -1,7 +1,3 @@ -/// -/// - - import * as React from 'react'; import * as CSSModules from 'react-css-modules'; diff --git a/react-css-modules/tsconfig.json b/react-css-modules/tsconfig.json index f4ba62c160..4c1582215b 100644 --- a/react-css-modules/tsconfig.json +++ b/react-css-modules/tsconfig.json @@ -10,9 +10,13 @@ ], "types": [], "noEmit": true, - "forceConsistentCasingInFileNames": true + "forceConsistentCasingInFileNames": true, + + "jsx": "react", + "experimentalDecorators": true }, "files": [ - "index.d.ts" + "index.d.ts", + "react-css-modules-tests.tsx" ] }