From 72d8b4e6bee0ffac79e96dd649a9da2adb86b507 Mon Sep 17 00:00:00 2001 From: name Date: Wed, 27 Sep 2023 11:34:23 +0000 Subject: 2023-09-26 --- typescript/tsconfig.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 typescript/tsconfig.json (limited to 'typescript/tsconfig.json') diff --git a/typescript/tsconfig.json b/typescript/tsconfig.json new file mode 100644 index 0000000..71ac60a --- /dev/null +++ b/typescript/tsconfig.json @@ -0,0 +1,34 @@ +{ + "compilerOptions": { + "strict": true, + "allowUnusedLabels": false, + "allowUnreachableCode": false, + "exactOptionalPropertyTypes": true, + "noFallthroughCasesInSwitch": true, + "noImplicitOverride": true, + "noImplicitReturns": true, + "noPropertyAccessFromIndexSignature": true, + "noUncheckedIndexedAccess": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + + "isolatedModules": true, + + "checkJs": true, + + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + + "target": "ES6", + "outDir": "../docusaurus/static/ajax/libs/wolfree/2023.8.31/js/" + }, + "$schema": "https://json.schemastore.org/tsconfig", + "display": "Strictest", + "_version": "2.0.0" +} + +// GitHub - tsconfig/bases: Hosts TSConfigs to extend in a TypeScript app, tuned to a particular runtime environment +// https://github.com/tsconfig/bases/blob/main/bases/strictest.json + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ -- cgit v1.2.3