Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[최용재]TS Todo Refactor 과제 #7

Open
wants to merge 12 commits into
base: yongjae
Choose a base branch
from
24 changes: 24 additions & 0 deletions yongjae/projects/FEDC5-3_VanillaJS_1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

node_modules ignore했는데 왜 포함되어있는지 모르겠어요.. 한번 체크해보시고 알려주세요 😁

dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
13 changes: 13 additions & 0 deletions yongjae/projects/FEDC5-3_VanillaJS_1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TS Todo</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

main.ts로 접근할 수 있는게 vite로 설치해서 내부적으로 동작이 되서 그런건가요..?

저는 그냥 타입스크립트 라이브러리 설치해서 코드를 짜가지고.. 몰라서 여쭤봅니다 .. !

</body>
</html>
Loading