Stub project

This commit is contained in:
Tangent Wantwight 2023-07-21 22:19:10 -04:00
commit d4fb577eba
5 changed files with 37 additions and 0 deletions

0
.gitignore vendored Normal file
View file

4
3x5.js Normal file
View file

@ -0,0 +1,4 @@
const h1 = document.createElement("h1");
h1.textContent = "Hello, World!";
document.body.append(h1);

10
index.html Normal file
View 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>

View 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
View file

@ -0,0 +1,7 @@
{
"compilerOptions": {
"checkJs": true,
"noEmit": true,
"strict": true
}
}