2019-01-31 20:26:41 -05:00
|
|
|
{
|
|
|
|
"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",
|
2019-03-16 04:45:53 -04:00
|
|
|
"rootDirs": ["lib","src"],
|
2019-01-31 20:26:41 -05:00
|
|
|
|
|
|
|
"outDir": "build"
|
|
|
|
},
|
|
|
|
|
|
|
|
"include": [
|
2019-02-25 23:54:56 -05:00
|
|
|
"src/**/*.ts",
|
2019-03-16 04:45:53 -04:00
|
|
|
"src/**/*.tsx",
|
|
|
|
"lib/sql-function-doc.ts"
|
2019-01-31 20:26:41 -05:00
|
|
|
],
|
|
|
|
"exclude": [
|
2019-05-03 20:14:57 -04:00
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.spec.tsx"
|
2019-01-31 20:26:41 -05:00
|
|
|
]
|
|
|
|
}
|