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