Start on v3.0

This commit is contained in:
apemanzilla
2017-11-21 12:55:36 -05:00
commit 5af6dc5077
9 changed files with 250 additions and 0 deletions

24
tsconfig.json Normal file
View File

@@ -0,0 +1,24 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"outDir": "dist",
"baseUrl": "src/",
"sourceMap": true,
"alwaysStrict": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"structNullChecks": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"types": [
"lodash",
"typed-screeps"
]
},
"exclude": [
"node_modules"
]
}