mirror of https://github.com/apache/druid.git
27 lines
684 B
JSON
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"]
|
|
}
|