Initial commit moving front end out of main repo

This commit is contained in:
2018-03-06 16:06:03 -05:00
commit 3c8f15edac
16 changed files with 11727 additions and 0 deletions

15
tsconfig.json Normal file
View File

@ -0,0 +1,15 @@
{
"compilerOptions": {
"outDir": "./built/",
"sourceMap": true,
"strict": true,
"noImplicitReturns": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"noImplicitAny": true
},
"include": [
"./src/**/*"
]
}