web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

commit 58443962fb89429216f40487794cc330c18fb5fc
parent 525e0804a32667c0ee6d8320beb4dec319d38261
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Mon, 30 Dec 2024 16:24:33 +0000

tsconfig: add node tsconfig

Diffstat:
Atsconfig/node.json | 25+++++++++++++++++++++++++
1 file changed, 25 insertions(+), 0 deletions(-)

diff --git a/tsconfig/node.json b/tsconfig/node.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "display": "Default", + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "composite": false, + "declaration": true, + "declarationMap": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "inlineSources": false, + "isolatedModules": true, + "moduleResolution": "node", + "noUnusedLocals": false, + "noUnusedParameters": false, + "preserveWatchOutput": true, + "skipLibCheck": true, + "strict": true + }, + "exclude": [ + "node_modules" + ] +} +\ No newline at end of file