human/tsconfig.json

60 lines
1.8 KiB
JSON
Raw Normal View History

2020-12-27 14:12:22 +01:00
{
"compilerOptions": {
"noEmitOnError": false,
2020-12-27 14:12:22 +01:00
"module": "es2020",
"target": "es2018",
"moduleResolution": "node",
"typeRoots": ["node_modules/@types"],
2021-03-17 23:57:00 +01:00
"outDir": "types",
2020-12-27 14:12:22 +01:00
"declaration": true,
2021-06-05 23:51:46 +02:00
"allowSyntheticDefaultImports": true,
2020-12-27 14:12:22 +01:00
"emitDeclarationOnly": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"preserveConstEnums": true,
"removeComments": false,
"resolveJsonModule": true,
"skipLibCheck": true,
2021-06-05 23:51:46 +02:00
"sourceMap": true,
"allowJs": true,
"baseUrl": "./",
"paths": {
"tslib": ["node_modules/tslib/tslib.d.ts"],
"@tensorflow/tfjs-node/dist/io/file_system": ["node_modules/@tensorflow/tfjs-node/dist/io/file_system.js"],
"@tensorflow/tfjs-core/dist/index": ["node_modules/@tensorflow/tfjs-core/dist/index.js"],
"@tensorflow/tfjs-converter/dist/index": ["node_modules/@tensorflow/tfjs-converter/dist/index.js"]
2021-06-05 23:51:46 +02:00
},
"strictNullChecks": true,
"noImplicitAny": false,
"noUnusedLocals": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedParameters": true,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false
2020-12-27 14:12:22 +01:00
},
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
2021-06-07 01:00:34 +02:00
"exclude": ["node_modules/", "types/"],
"include": ["src/"],
2021-03-14 04:31:09 +01:00
"typedocOptions": {
"excludePrivate": true,
"excludeExternals": true,
"excludeProtected": true,
"excludeInternal": true,
"disableSources": true,
"gitRevision": "main",
"hideGenerator": "true",
"readme": "none",
"out": "typedoc",
2021-06-07 01:00:34 +02:00
"entryPoints": ["src/human.ts"],
"exclude": [],
"externalPattern": ["node_modules/", "tfjs/"],
"logLevel": "Verbose",
"logger": "none",
"theme": "wiki/theme/"
2021-03-14 04:31:09 +01:00
}
2020-12-27 14:12:22 +01:00
}