From 8c67935390749d37e3abd0f199a23a5b7c8befdb Mon Sep 17 00:00:00 2001 From: Rudis Muiznieks Date: Wed, 18 Aug 2021 06:32:12 -0500 Subject: [PATCH] first commit --- .gitignore | 1 + README.md | 5 +++++ src/model/Resource.ts | 3 +++ tsconfig.json | 12 ++++++++++++ 4 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 src/model/Resource.ts create mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d8951f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public/js/irreligious.js diff --git a/README.md b/README.md new file mode 100644 index 0000000..00902fc --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# irreligio.us + +An incremental game. + +Nothing here works or is very interesting yet. diff --git a/src/model/Resource.ts b/src/model/Resource.ts new file mode 100644 index 0000000..ee1474b --- /dev/null +++ b/src/model/Resource.ts @@ -0,0 +1,3 @@ +class Resource { + public name: string; +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..2507836 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "noImplicitAny": false, + "rootDir": "./src/", + "outFile": "./public/js/irreligious.js", + "removeComments": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "target": "ES5", + "module": "amd" + } +}