commit 8c67935390749d37e3abd0f199a23a5b7c8befdb Author: Rudis Muiznieks Date: Wed Aug 18 06:32:12 2021 -0500 first commit 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" + } +}