mirror of https://github.com/apache/druid.git
31 lines
591 B
JSON
31 lines
591 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"noImplicitAny": true,
|
||
|
"noEmitOnError": true,
|
||
|
"declaration": false,
|
||
|
"removeComments": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"strictNullChecks": true,
|
||
|
"strictFunctionTypes": false,
|
||
|
"skipLibCheck": true,
|
||
|
"importHelpers": true,
|
||
|
"target": "es5",
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"lib": ["dom", "es2016"],
|
||
|
"jsx": "react",
|
||
|
"rootDir": "src",
|
||
|
|
||
|
"outDir": "build"
|
||
|
},
|
||
|
|
||
|
"include": [
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"**/*.test.ts"
|
||
|
]
|
||
|
}
|