Files

19 lines
441 B
JSON
Raw Permalink Normal View History

2016-07-25 08:24:31 -07:00
{
"compilerOptions": {
2016-11-30 00:11:53 -06:00
"declaration": true,
2016-07-25 08:24:31 -07:00
"module": "amd",
"moduleResolution": "node",
2016-07-25 08:24:31 -07:00
"noImplicitAny": true,
2016-11-30 00:11:53 -06:00
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"target": "es3"
2016-07-25 08:24:31 -07:00
},
2016-11-30 00:11:53 -06:00
"include": [
"./src/**/*.ts"
2016-07-25 08:24:31 -07:00
]
2016-11-30 00:11:53 -06:00
}