2019-03-23 17:16:41 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-12-10 11:19:03 +00:00
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"removeComments": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"esModuleInterop": true
|
2019-03-23 17:16:41 +00:00
|
|
|
}
|
2019-12-10 11:19:03 +00:00
|
|
|
}
|