mirror of
https://github.com/apache/druid.git
synced 2025-02-06 10:08:26 +00:00
* Bump zustand, licenses * Bump TypeScript, Eslint, use type imports * Switch to react-shallow-renderer from enzyme * Update ts-loader
27 lines
713 B
JSON
27 lines
713 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": false,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"jsx": "react",
|
|
"lib": ["dom", "es2016", "esnext"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"removeComments": true,
|
|
"rootDirs": ["lib", "src"],
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"target": "es2016"
|
|
},
|
|
"include": ["src", "e2e-tests", "typings"]
|
|
}
|