2016-05-18 10:50:56 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"declaration": true,
|
2017-12-23 22:37:58 -05:00
|
|
|
"experimentalDecorators": true,
|
2018-01-08 00:50:18 -08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2017-12-23 22:37:58 -05:00
|
|
|
"jsx": "react",
|
2018-08-15 22:38:34 -07:00
|
|
|
"lib": ["dom", "es2015"],
|
2016-11-29 22:47:09 -05:00
|
|
|
"module": "amd",
|
2017-05-08 00:42:41 -07:00
|
|
|
"moduleResolution": "node",
|
2018-08-15 22:38:34 -07:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2016-11-29 22:47:09 -05:00
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitThis": true,
|
2018-08-15 22:38:34 -07:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
2017-12-23 22:37:58 -05:00
|
|
|
"pretty": true,
|
2018-08-15 22:38:34 -07:00
|
|
|
"strict": true,
|
2018-08-15 23:58:04 -07:00
|
|
|
"strictFunctionTypes": false,
|
2018-08-15 22:38:34 -07:00
|
|
|
"strictPropertyInitialization": false,
|
2017-05-08 00:42:41 -07:00
|
|
|
"target": "es5"
|
2016-05-18 10:50:56 -07:00
|
|
|
},
|
2017-12-23 22:37:58 -05:00
|
|
|
"exclude": [
|
|
|
|
|
"dist",
|
|
|
|
|
"node_modules"
|
|
|
|
|
],
|
2016-11-29 22:47:09 -05:00
|
|
|
"include": [
|
2017-12-23 22:37:58 -05:00
|
|
|
"./src/**/*.ts",
|
|
|
|
|
"./src/**/*.tsx"
|
2016-05-18 10:50:56 -07:00
|
|
|
]
|
2016-11-29 22:47:09 -05:00
|
|
|
}
|