Skip to content

Commit 505bbf8

Browse files
author
Matsui Masashi
committed
create typescript version
1 parent d0cee84 commit 505bbf8

10 files changed

+2440
-0
lines changed

Diff for: .editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
max_line_length = 80
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
max_line_length = 0
15+
trim_trailing_whitespace = false
16+
17+
[COMMIT_EDITMSG]
18+
max_line_length = 0

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
dist/

Diff for: .prettierrc.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
trailingComma: "es5"
2+
tabWidth: 2
3+
semi: false
4+
singleQuote: true

Diff for: assets/index.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Hello World!</title>
6+
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
7+
</head>
8+
<body>
9+
<div id="main"></div>
10+
<script src="bundle.js"></script>
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)