2016-08-25 15:55:00 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2016-10-11 01:34:15 +00:00
|
|
|
"target": "ES6",
|
2016-08-25 15:55:00 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "out",
|
2016-10-12 08:45:01 +00:00
|
|
|
"lib": [
|
|
|
|
"es6"
|
|
|
|
],
|
2016-09-09 18:11:24 +00:00
|
|
|
"noImplicitAny": true,
|
2016-08-25 15:55:00 +00:00
|
|
|
"sourceMap": true,
|
2016-10-11 01:34:15 +00:00
|
|
|
"rootDir": "src",
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noImplicitThis": true,
|
2016-12-24 15:52:31 +00:00
|
|
|
"noImplicitReturns": true,
|
2016-12-25 11:33:12 +00:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
2016-12-24 15:52:31 +00:00
|
|
|
"typeRoots": [
|
|
|
|
"typings/modules",
|
|
|
|
"typings/globals"
|
|
|
|
]
|
2016-08-25 15:55:00 +00:00
|
|
|
},
|
|
|
|
"exclude": [
|
2016-10-11 01:34:15 +00:00
|
|
|
"node_modules",
|
|
|
|
"out"
|
2016-08-25 15:55:00 +00:00
|
|
|
]
|
|
|
|
}
|