From fb2b0b965e13b4c33a27421d03e0e87978fda4ab Mon Sep 17 00:00:00 2001 From: Autumn Date: Mon, 11 May 2026 17:28:55 +0100 Subject: [meta] setup NodeJS project --- tsconfig.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..7edbc7b --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "rootDir": "./src", + "outDir": "./dist", + + "lib": [ "esnext" ], + "target": "ESNext", + "module": "CommonJS", + "types": [ "node" ] + }, + + "ts-node": { + "esm": false, + "transpileOnly": true, + + "require": [ "tsconfig-paths/register" ] + } +} -- cgit v1.3