From d4fb577eba09854b609e5a535d5999f1ea80f59e Mon Sep 17 00:00:00 2001 From: Tangent Wantwight Date: Fri, 21 Jul 2023 22:19:10 -0400 Subject: [PATCH] Stub project --- .gitignore | 0 3x5.js | 4 ++++ index.html | 10 ++++++++++ prototype-3x5.code-workspace | 16 ++++++++++++++++ tsconfig.json | 7 +++++++ 5 files changed, 37 insertions(+) create mode 100644 .gitignore create mode 100644 3x5.js create mode 100644 index.html create mode 100644 prototype-3x5.code-workspace create mode 100644 tsconfig.json 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 @@ + + + + 3x5 + + + + + + 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 + } +}