refactor: Moved all dev/docker files to /tools folder

This commit is contained in:
NGPixel
2017-08-12 15:11:27 -04:00
parent d6c5264f9e
commit 5f415a4045
16 changed files with 42 additions and 110 deletions

21
tools/tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": false,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"target": "es5"
},
"exclude": [
".fusebox",
"data",
"node_modules",
"repo"
]
}