2019-10-06 20:04:33 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "./build/commonjs-node",
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
2019-10-12 21:45:49 +00:00
|
|
|
"lib": ["es5", "es6", "es7", "esnext", "dom", "dom.iterable"],
|
2019-10-06 20:04:33 +00:00
|
|
|
// TODO: Change to true after migration to TS is complete
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"declaration": false,
|
|
|
|
|
"declarationMap": false,
|
|
|
|
|
/////////////////////////////////////////////////////////
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"alwaysStrict": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2019-10-12 21:45:49 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"esModuleInterop": true
|
2019-10-06 20:04:33 +00:00
|
|
|
},
|
2019-10-12 21:45:49 +00:00
|
|
|
"include": ["./src/**/*", "./typings/**/*"],
|
2019-10-06 20:04:33 +00:00
|
|
|
"exclude": ["node_modules", "./src/__tests__/*"]
|
|
|
|
|
}
|