2019-10-06 20:04:33 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2019-11-24 22:44:26 +00:00
|
|
|
"outDir": "./_target",
|
2019-10-06 20:04:33 +00:00
|
|
|
"target": "es5",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
2019-11-24 22:44:26 +00:00
|
|
|
"lib": ["es2015", "dom"],
|
|
|
|
|
"allowJs": false,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2019-10-06 20:04:33 +00:00
|
|
|
"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__/*"]
|
|
|
|
|
}
|