mirror of
https://github.com/apache/druid.git
synced 2025-02-18 16:12:23 +00:00
* Use common browserlist and update to drop IE11 * Change TypeScript target to ES2016 * Update browserslist for "supports es6" support * Show a warning if accessed from an unsupported browser * Inline browser-update styles; detect SyntaxErrors too * Better wording * Upgrade to the latest Blueprint * Refactor RunButton to be FC, use useHotkeys * Remove dead license * Update snapshots * Address feedback * Wording Co-authored-by: Vadim Ogievetsky <vadimon@gmail.com> Co-authored-by: Vadim Ogievetsky <vadimon@gmail.com>
26 lines
693 B
JSON
26 lines
693 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,
|
|
"target": "es2016"
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "e2e-tests/**/*.ts"]
|
|
}
|