From bb7bd40b8a9dc240c88b82d88497e793ebaa2950 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 5 May 2026 05:05:08 +0200 Subject: [PATCH] chore: update deprecated ts options --- tsconfig.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c4b0a8626..f4e9e951b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,11 +2,12 @@ "compilerOptions": { "lib": ["ESNext", "DOM", "DOM.Iterable"], "jsx": "react", - "baseUrl": "./src", + "rootDir": "./src", "outDir": "./dist", - "moduleResolution": "node", + "module": "nodenext", + "moduleResolution": "nodenext", "paths": { - "stremio/*": ["*"], + "stremio/*": ["./src/*"], }, "resolveJsonModule": true, "esModuleInterop": true,