druid/web-console/tsconfig.json
mcbrewster 01f3da6fda Web Console: add Group by interval to segments view (#7986)
* add group by

* update snapshot

* fix spacing

* change design pattern

* rename interface

* add static function

* save

* add whereClause"

* add default page size

* add where to inner query

* snapshots
2019-07-19 11:25:25 -07:00

27 lines
684 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"]
}