mirror of https://github.com/apache/druid.git
25 lines
643 B
JSON
25 lines
643 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", "esnext"],
|
|
"jsx": "react",
|
|
"rootDirs": ["lib", "src"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"]
|
|
}
|