Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitca533a1

Browse files
committed
init
0 parents  commitca533a1

File tree

11 files changed

+3503
-0
lines changed

11 files changed

+3503
-0
lines changed

‎.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

‎eslint.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
importantfufrom'@antfu/eslint-config'
2+
3+
exportdefaultantfu()

‎index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<htmllang="en">
3+
<head>
4+
<metacharset="UTF-8"/>
5+
<linkrel="icon"type="image/svg+xml"href="/vite.svg"/>
6+
<metaname="viewport"content="width=device-width, initial-scale=1.0"/>
7+
<title>Vite + TS</title>
8+
</head>
9+
<body>
10+
<divid="app"></div>
11+
<scripttype="module"src="/src/main.ts"></script>
12+
</body>
13+
</html>

‎package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name":"typescript-algorithms",
3+
"type":"module",
4+
"version":"1.0.0",
5+
"private":true,
6+
"packageManager":"pnpm@8.14.0",
7+
"scripts": {
8+
"dev":"vite",
9+
"build":"tsc && vite build",
10+
"preview":"vite preview",
11+
"test":"vitest"
12+
},
13+
"devDependencies": {
14+
"@antfu/eslint-config":"^2.6.2",
15+
"eslint":"^8.56.0",
16+
"typescript":"^5.3.3",
17+
"vite":"^5.0.11",
18+
"vitest":"^1.2.0"
19+
}
20+
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp