2019-01-31 20:26:41 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-04-16 23:15:19 -04:00
|
|
|
"declaration": false,
|
|
|
|
"esModuleInterop": true,
|
2019-05-29 19:11:59 -04:00
|
|
|
"experimentalDecorators": true,
|
2021-04-16 23:15:19 -04:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"lib": ["dom", "es2016", "esnext"],
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2019-01-31 20:26:41 -05:00
|
|
|
"noEmitOnError": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
2021-04-16 23:15:19 -04:00
|
|
|
"noImplicitThis": true,
|
2019-06-30 22:33:16 -04:00
|
|
|
"noUnusedLocals": true,
|
2021-04-16 23:15:19 -04:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"rootDirs": ["lib", "src"],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
2021-10-26 00:53:38 -04:00
|
|
|
"useUnknownInCatchVariables": false,
|
2021-06-10 22:05:40 -04:00
|
|
|
"target": "es2016"
|
2019-01-31 20:26:41 -05:00
|
|
|
},
|
2023-02-07 02:12:54 -05:00
|
|
|
"include": ["src", "e2e-tests", "typings"]
|
2019-01-31 20:26:41 -05:00
|
|
|
}
|