diff options
Diffstat (limited to '')
-rw-r--r-- | docusaurus/tsconfig.json | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/docusaurus/tsconfig.json b/docusaurus/tsconfig.json index 50e4989..9685ccf 100644 --- a/docusaurus/tsconfig.json +++ b/docusaurus/tsconfig.json @@ -1,18 +1,11 @@ -/** - * @license - * SPDX-License-Identifier: AGPL-3.0-or-later - * This file is part of Wolfree. - * This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - */ - -// @ts-check - { // This file is not used in compilation. It is here just for a nice editor experience. "extends": "@tsconfig/docusaurus/tsconfig.json", "compilerOptions": { - "baseUrl": ".", - "strict": true, - "forceConsistentCasingInFileNames": true + "module": "Node16", // Option 'module' must be set to 'Node16' when option 'moduleResolution' is set to 'Node16'. + "jsx": "react", // Cannot use JSX unless the '--jsx' flag is provided. + "baseUrl": "." } } + +/* SPDX-License-Identifier: AGPL-3.0-or-later */ |