Stub project
This commit is contained in:
commit
d4fb577eba
5 changed files with 37 additions and 0 deletions
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
4
3x5.js
Normal file
4
3x5.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
const h1 = document.createElement("h1");
|
||||
h1.textContent = "Hello, World!";
|
||||
|
||||
document.body.append(h1);
|
10
index.html
Normal file
10
index.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>3x5</title>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<body>
|
||||
<script src="3x5.js"></script>
|
||||
</body>
|
||||
</html>
|
16
prototype-3x5.code-workspace
Normal file
16
prototype-3x5.code-workspace
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"name": "Scripting Prototype",
|
||||
"path": "."
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||
"editor.formatOnSave": true,
|
||||
"editor.formatOnType": true,
|
||||
"[javascript]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
}
|
||||
}
|
||||
}
|
7
tsconfig.json
Normal file
7
tsconfig.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"checkJs": true,
|
||||
"noEmit": true,
|
||||
"strict": true
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue