diff --git a/src/App.css b/src/app.component.css similarity index 100% rename from src/App.css rename to src/app.component.css diff --git a/src/App.test.tsx b/src/app.component.spec.tsx similarity index 86% rename from src/App.test.tsx rename to src/app.component.spec.tsx index a754b20..752e35b 100644 --- a/src/App.test.tsx +++ b/src/app.component.spec.tsx @@ -1,6 +1,6 @@ import React from 'react'; import ReactDOM from 'react-dom'; -import App from './App'; +import App from './app.component'; it('renders without crashing', () => { const div = document.createElement('div'); diff --git a/src/App.tsx b/src/app.component.tsx similarity index 95% rename from src/App.tsx rename to src/app.component.tsx index ff5a4a6..f3cbdf8 100644 --- a/src/App.tsx +++ b/src/app.component.tsx @@ -1,6 +1,6 @@ import React, { Component } from 'react'; import logo from './logo.svg'; -import './App.css'; +import './app.component.css'; class App extends Component { render() { diff --git a/src/index.tsx b/src/index.tsx index 87d1be5..b6c0c7a 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,7 +1,7 @@ import React from 'react'; import ReactDOM from 'react-dom'; import './index.css'; -import App from './App'; +import App from './app.component'; import * as serviceWorker from './serviceWorker'; ReactDOM.render(, document.getElementById('root')); diff --git a/tsconfig.json b/tsconfig.json index 0980b23..fcae136 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,8 @@ "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, - "jsx": "preserve" + "jsx": "preserve", + "noImplicitAny": false }, "include": [ "src"