first commit

This commit is contained in:
Rudis Muiznieks 2021-08-18 06:32:12 -05:00
commit 8c67935390
4 changed files with 21 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
public/js/irreligious.js

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# irreligio.us
An incremental game.
Nothing here works or is very interesting yet.

3
src/model/Resource.ts Normal file
View File

@ -0,0 +1,3 @@
class Resource {
public name: string;
}

12
tsconfig.json Normal file
View File

@ -0,0 +1,12 @@
{
"compilerOptions": {
"noImplicitAny": false,
"rootDir": "./src/",
"outFile": "./public/js/irreligious.js",
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES5",
"module": "amd"
}
}