From 50859155dff9a85645dbfddf166ed888756be107 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Wed, 6 May 2020 00:57:29 +0200 Subject: Convert from a web extension to a user script Since it looks like everything's going to happen in the content script, might as well make this a user script instead. Build with Browserify in order to get a compiled JS file compatible with browsers. For some reason I'm currently getting an error complaining that the `stylesheet` variable is `null`. Need to look into that. --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index 6a89f54..7dc02bd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,8 @@ { "compilerOptions": { - "module": "amd", + "module": "commonjs", "target": "ES5", - "outFile": "./dist/netflix-no-skip.user.js", + "outDir": "./build", "sourceMap": true }, "files": [ -- cgit v1.2.3