Initial commit

This commit is contained in:
2021-01-08 21:06:48 +09:00
commit 90610d7429
17 changed files with 14930 additions and 0 deletions

41
client/.eslintrc Normal file
View File

@@ -0,0 +1,41 @@
{
"env": {
"browser": true,
"es2020": true
},
"extends": [
"plugin:react/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": ["react"],
"rules": {},
"settings": {
"react": {
"version": "detect"
},
"import/resolver": {
"node": {
"paths": ["client"],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"overrides": [
{
"files": [
"**/*.tsx"
],
"rules": {
"react/react-in-jsx-scope": "off",
"react/prop-types": "off"
}
}
]
}

5
client/App.tsx Normal file
View File

@@ -0,0 +1,5 @@
import React from "react";
export default function App(): JSX.Element {
return <div>Hello World!</div>;
}

16
client/index.hbs Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="description" content="tf-ocr" />
<title>동애니</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>

5
client/index.tsx Normal file
View File

@@ -0,0 +1,5 @@
import ReactDOM from "react-dom";
import App from "App";
import React from "react";
ReactDOM.render(<App />, document.getElementById("root"));

14
client/tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"outDir": "../dist/client",
"noImplicitAny": true,
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"sourceMap": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"baseUrl": "./"
},
}