Initial Commit

This commit is contained in:
seedorf_s1
2020-11-13 09:09:21 +01:00
commit 5a56fc26d2
50 changed files with 5038 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"module": "amd",
"lib": ["es5", "es6", "dom"],
"removeComments": true,
"preserveConstEnums": true,
"outFile": "../js/bundle.js",
"target": "es5",
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"strict": true,
"sourceRoot": "./src",
"rootDir": ".",
"skipLibCheck": true,
"baseUrl": "."
},
"include": [
"./src/**/*.ts"
],
"exclude": [
]
}