Compare commits

...

2 Commits

Author SHA1 Message Date
matty b77a9d6866 niggers 2024-03-07 19:58:50 -05:00
matty 4a96d3c212 fix random shit 2024-03-07 19:58:31 -05:00
3 changed files with 1307 additions and 1564 deletions

8
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "peertube-plugin-hardware-transcode-nvenc", "name": "peertube-plugin-nctv-nvenc-transcode",
"version": "0.0.1", "version": "1.0.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "peertube-plugin-hardware-transcode-nvenc", "name": "peertube-plugin-nctv-nvenc-transcode",
"version": "0.0.1", "version": "1.0.0",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@peertube/peertube-types": "^5.1.0", "@peertube/peertube-types": "^5.1.0",

View File

@ -1,24 +1,23 @@
{ {
"extends": "@tsconfig/node16/tsconfig.json", "extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": { "compilerOptions": {
"moduleResolution": "node", // Tell tsc to look in node_modules for modules "moduleResolution": "Node16", // Use Node.js 16-style module resolution
"strict": true, // That implies alwaysStrict, noImplicitAny, noImplicitThis "strict": true, // That implies alwaysStrict, noImplicitAny, noImplicitThis
"alwaysStrict": true, // should already be true because of strict:true "alwaysStrict": true, // should already be true because of strict:true
"noImplicitAny": true, // should already be true because of strict:true "noImplicitAny": true, // should already be true because of strict:true
"noImplicitThis": true, // should already be true because of strict:true "noImplicitThis": true, // should already be true because of strict:true
"noImplicitReturns": true, "noImplicitReturns": true,
"strictBindCallApply": true, // should already be true because of strict:true "strictBindCallApply": true, // should already be true because of strict:true
"noUnusedLocals": true, "noUnusedLocals": true,
"removeComments": true, "removeComments": true,
"sourceMap": true, "sourceMap": true,
"outDir": "../dist/", "outDir": "../dist/",
"paths": {} "paths": {}
}, },
"include": [ "include": ["./**/*"],
"./**/*" "exclude": []
], }
"exclude": []
}

2828
yarn.lock

File diff suppressed because it is too large Load Diff