2019-01-31 20:26:41 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-06-30 22:33:16 -04:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2019-05-29 19:11:59 -04:00
|
|
|
"experimentalDecorators": true,
|
2019-01-31 20:26:41 -05:00
|
|
|
"noEmitOnError": true,
|
|
|
|
"declaration": false,
|
|
|
|
"removeComments": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
2019-06-30 22:33:16 -04:00
|
|
|
"strict": true,
|
2019-01-31 20:26:41 -05:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"importHelpers": true,
|
2019-06-08 01:27:19 -04:00
|
|
|
"esModuleInterop": true,
|
2019-06-30 22:33:16 -04:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUnusedLocals": true,
|
2019-01-31 20:26:41 -05:00
|
|
|
"target": "es5",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"lib": ["dom", "es2016"],
|
|
|
|
"jsx": "react",
|
2019-07-19 14:25:25 -04:00
|
|
|
"rootDirs": ["lib", "src"],
|
2019-01-31 20:26:41 -05:00
|
|
|
|
|
|
|
"outDir": "build"
|
|
|
|
},
|
2019-07-19 14:25:25 -04:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "lib/sql-function-doc.ts"]
|
2019-01-31 20:26:41 -05:00
|
|
|
}
|