2019-01-31 17:26:41 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-05-29 16:11:59 -07:00
|
|
|
"experimentalDecorators": true,
|
2019-01-31 17:26:41 -08:00
|
|
|
"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",
|
2019-03-16 01:45:53 -07:00
|
|
|
"rootDirs": ["lib","src"],
|
2019-01-31 17:26:41 -08:00
|
|
|
|
|
|
|
"outDir": "build"
|
|
|
|
},
|
|
|
|
"include": [
|
2019-02-25 20:54:56 -08:00
|
|
|
"src/**/*.ts",
|
2019-03-16 01:45:53 -07:00
|
|
|
"src/**/*.tsx",
|
|
|
|
"lib/sql-function-doc.ts"
|
2019-01-31 17:26:41 -08:00
|
|
|
]
|
|
|
|
}
|