2020-11-12 19:01:50 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es6",
|
|
|
|
"lib": [
|
|
|
|
"es2015",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"newLine": "LF",
|
|
|
|
"baseUrl": ".",
|
|
|
|
// Additional compile options
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "h",
|
|
|
|
// Strict Type-Checking Options
|
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-05-31 23:47:00 +00:00
|
|
|
|
|
|
|
// Needed for some of our internal stuff.
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-11-12 19:01:50 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2022-11-06 13:37:07 +00:00
|
|
|
"src",
|
2020-11-12 19:01:50 +00:00
|
|
|
]
|
|
|
|
}
|