Summary: switch to httptoolkit Reviewers: kuba-orlik Reviewed By: kuba-orlik Differential Revision: https://hub.sealcode.org/D1578
39 lines
722 B
JSON
39 lines
722 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"lib": [
|
|
"es2015"
|
|
],
|
|
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"downlevelIteration": true,
|
|
"declaration": true,
|
|
|
|
"pretty": true
|
|
},
|
|
"include": [
|
|
"typings/**/*",
|
|
"src/**/*"
|
|
]
|
|
}
|