diff --git a/packages/gnome-shell/tsconfig.doc.json b/packages/gnome-shell/tsconfig.doc.json index 8b60348..b7c3edb 100644 --- a/packages/gnome-shell/tsconfig.doc.json +++ b/packages/gnome-shell/tsconfig.doc.json @@ -2,8 +2,6 @@ "extends": "./tsconfig.json", "compilerOptions": { // General settings for code interpretation - "target": "ESNext", - "module": "ESNext", "noEmit": true, "baseUrl": "./", "rootDir": ".", diff --git a/packages/gnome-shell/tsconfig.json b/packages/gnome-shell/tsconfig.json index 1e2e3c7..a289edc 100644 --- a/packages/gnome-shell/tsconfig.json +++ b/packages/gnome-shell/tsconfig.json @@ -1,11 +1,12 @@ { "extends": "@tsconfig/strictest/tsconfig.json", "compilerOptions": { + // GJS 1.85.2 uses Spidermonkey 140 which supports most ESNext features. "lib": ["ESNext"], "types": [], - "target": "ESNext", - "module": "ESNext", - "moduleResolution": "Bundler", + "target": "esnext", + "module": "nodenext", + "moduleResolution": "nodenext", "skipLibCheck": false }, "include": ["./dist/**/*.d.ts"]