Skip to content

Commit d53d092

Browse files
committed
Initial commit
0 parents  commit d53d092

18 files changed

+14250
-0
lines changed

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
25+
.npmrc

.vscode/launch.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "chrome",
6+
"request": "launch",
7+
"name": "Client",
8+
"url": "https://localhost:3000/",
9+
"webRoot": "${workspaceFolder}",
10+
"preLaunchTask": "npm: start"
11+
}
12+
]
13+
}

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"files.insertFinalNewline": true,
3+
"files.trimFinalNewlines": true,
4+
"editor.defaultFormatter": "esbenp.prettier-vscode",
5+
"editor.formatOnSave": true
6+
}

.vscode/tasks.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "start",
7+
"problemMatcher": {
8+
"owner": "custom", //This is not needed but, required by the problemMatcher Object
9+
"pattern": {
10+
"regexp": "^$" //This is not needed but, required by the problemMatcher Object
11+
},
12+
"background": {
13+
"activeOnStart": true,
14+
"beginsPattern": "Compiling...", //Signals the begin of the Task
15+
"endsPattern": "Compiled .*" //Signals that now the initialization of the task is complete
16+
}
17+
},
18+
"isBackground": true
19+
}
20+
]
21+
}

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @rolandszoke

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[Typescript Cheatsheet](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet#reacttypescript-cheatsheets).
2+
3+
[Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
4+
5+
[React documentation](https://reactjs.org/).

0 commit comments

Comments
 (0)