commit d4fb577eba09854b609e5a535d5999f1ea80f59e Author: Tangent Wantwight <tangent128@gmail.com> Date: Fri Jul 21 22:19:10 2023 -0400 Stub project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/3x5.js b/3x5.js new file mode 100644 index 0000000..e64d133 --- /dev/null +++ b/3x5.js @@ -0,0 +1,4 @@ +const h1 = document.createElement("h1"); +h1.textContent = "Hello, World!"; + +document.body.append(h1); diff --git a/index.html b/index.html new file mode 100644 index 0000000..9ae30dd --- /dev/null +++ b/index.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> + <head> + <title>3x5</title> + <meta charset="UTF-8" /> + </head> + <body> + <script src="3x5.js"></script> + </body> +</html> diff --git a/prototype-3x5.code-workspace b/prototype-3x5.code-workspace new file mode 100644 index 0000000..dcae2fa --- /dev/null +++ b/prototype-3x5.code-workspace @@ -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" + } + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..b4f8fea --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,7 @@ +{ + "compilerOptions": { + "checkJs": true, + "noEmit": true, + "strict": true + } +}