2016-05-18 21:35:27 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"declaration": true,
|
2017-12-25 10:37:03 -05:00
|
|
|
"experimentalDecorators": true,
|
2018-01-08 00:50:20 -08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2017-12-25 10:37:03 -05:00
|
|
|
"jsx": "react",
|
2017-09-18 14:12:31 -04:00
|
|
|
"lib": ["dom", "es2015.collection", "es2015.promise", "es5"],
|
2016-11-30 00:49:36 -06:00
|
|
|
"module": "amd",
|
2017-05-08 00:37:13 -07:00
|
|
|
"moduleResolution": "node",
|
2016-11-30 00:49:36 -06:00
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2017-12-25 10:37:03 -05:00
|
|
|
"pretty": true,
|
2016-11-30 00:49:36 -06:00
|
|
|
"strictNullChecks": true,
|
2017-05-08 00:37:13 -07:00
|
|
|
"target": "es5"
|
2016-05-18 21:35:27 -07:00
|
|
|
},
|
2017-12-25 10:37:03 -05:00
|
|
|
"exclude": [
|
|
|
|
|
"dist",
|
|
|
|
|
"node_modules"
|
|
|
|
|
],
|
2016-11-30 00:49:36 -06:00
|
|
|
"include": [
|
2017-12-25 10:37:03 -05:00
|
|
|
"./src/**/*.ts",
|
|
|
|
|
"./src/**/*.tsx"
|
2016-05-18 21:35:27 -07:00
|
|
|
]
|
2016-11-30 00:49:36 -06:00
|
|
|
}
|