mirror of
https://github.com/apache/druid.git
synced 2025-02-09 03:24:55 +00:00
* add assets to auth exclude path * add frame to tile page * better empty filter state * strict TS * fix segments go to sql * add unavailable segments * factor out sugestable input * fix tests * update datasources sql * no depricated extend * add index spec to tuning configs * fix scss lint
31 lines
699 B
JSON
31 lines
699 B
JSON
{
|
|
"compilerOptions": {
|
|
"forceConsistentCasingInFileNames": true,
|
|
"experimentalDecorators": true,
|
|
"noEmitOnError": true,
|
|
"declaration": false,
|
|
"removeComments": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"importHelpers": true,
|
|
"esModuleInterop": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"lib": ["dom", "es2016"],
|
|
"jsx": "react",
|
|
"rootDirs": ["lib","src"],
|
|
|
|
"outDir": "build"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"lib/sql-function-doc.ts"
|
|
]
|
|
}
|