mirror of https://github.com/vladmandic/human
60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"outDir": "types",
|
|
"baseUrl": "./",
|
|
"paths": { "tslib": ["./node_modules/tslib/tslib.d.ts"] },
|
|
"lib": ["esnext", "dom", "webworker"],
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": false,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"declarationMap": false,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": false,
|
|
"exactOptionalPropertyTypes": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"isolatedModules": false,
|
|
"noEmitHelpers": true,
|
|
"noEmitOnError": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": true,
|
|
"preserveConstEnums": false,
|
|
"pretty": true,
|
|
"removeComments": false,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"stripInternal": false,
|
|
"useDefineForClassFields": true,
|
|
"useUnknownInCatchVariables": true
|
|
},
|
|
"formatCodeOptions": {
|
|
"indentSize": 2,
|
|
"tabSize": 2
|
|
},
|
|
"exclude": ["node_modules/", "types/", "tfjs/", "dist/"],
|
|
"include": ["src", "types/human.d.ts"],
|
|
"typedocOptions": {
|
|
"externalPattern": ["node_modules/", "tfjs/"]
|
|
}
|
|
}
|