2019-01-31 17:26:41 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-06-30 19:33:16 -07:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2019-05-29 16:11:59 -07:00
|
|
|
"experimentalDecorators": true,
|
2019-01-31 17:26:41 -08:00
|
|
|
"noEmitOnError": true,
|
|
|
|
"declaration": false,
|
|
|
|
"removeComments": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
2019-06-30 19:33:16 -07:00
|
|
|
"strict": true,
|
2019-01-31 17:26:41 -08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"importHelpers": true,
|
2019-06-07 22:27:19 -07:00
|
|
|
"esModuleInterop": true,
|
2019-06-30 19:33:16 -07:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUnusedLocals": true,
|
2019-01-31 17:26:41 -08:00
|
|
|
"target": "es5",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2019-07-27 01:46:37 -07:00
|
|
|
"lib": ["dom", "es2016", "esnext"],
|
2019-01-31 17:26:41 -08:00
|
|
|
"jsx": "react",
|
2019-07-19 22:59:07 -07:00
|
|
|
"rootDirs": ["lib", "src"]
|
2019-01-31 17:26:41 -08:00
|
|
|
},
|
2019-08-24 11:35:30 -07:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"]
|
2019-01-31 17:26:41 -08:00
|
|
|
}
|