Skip to content
This repository has been archived by the owner on Sep 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from hoondeveloper/v0.0.2-release
Browse files Browse the repository at this point in the history
V0.0.2 release
  • Loading branch information
enk0de authored Jul 11, 2021
2 parents 364ae36 + 8458243 commit 82e458f
Show file tree
Hide file tree
Showing 5 changed files with 210 additions and 197 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"prettier": "^2.3.0",
"react-refresh": "^0.10.0",
"terser-webpack-plugin": "^5.1.2",
"ts-loader": "^9.2.3",
"type-fest": "^1.1.3",
"typescript": "^4.2.4",
"url-loader": "^4.1.1",
Expand Down
8 changes: 4 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import React from 'react';

const App: React.FC = () => {
return <></>
}
return <></>;
};

export default App;
export default App;
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// "composite": true, /* Enable project compilation */
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
// "removeComments": true, /* Do not emit comments to output. */
"noEmit": true, /* Do not emit outputs. */
"noEmit": false, /* Do not emit outputs. */
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
"isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
Expand Down
Loading

0 comments on commit 82e458f

Please sign in to comment.