25 lines
459 B
JSON
25 lines
459 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"outDir": "dist",
|
|
"baseUrl": "src/",
|
|
"sourceMap": true,
|
|
"alwaysStrict": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"types": [
|
|
"lodash",
|
|
"typed-screeps"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|