Compare commits
No commits in common. "b77a9d6866bbaec36b5efad1d475080efb43ac35" and "606d1d63771d00d6cdefc8bab8d6e1c1bb7e3226" have entirely different histories.
b77a9d6866
...
606d1d6377
8
package-lock.json
generated
8
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "peertube-plugin-nctv-nvenc-transcode",
|
"name": "peertube-plugin-hardware-transcode-nvenc",
|
||||||
"version": "1.0.0",
|
"version": "0.0.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "peertube-plugin-nctv-nvenc-transcode",
|
"name": "peertube-plugin-hardware-transcode-nvenc",
|
||||||
"version": "1.0.0",
|
"version": "0.0.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@peertube/peertube-types": "^5.1.0",
|
"@peertube/peertube-types": "^5.1.0",
|
||||||
|
@ -1,23 +1,24 @@
|
|||||||
{
|
{
|
||||||
"extends": "@tsconfig/node16/tsconfig.json",
|
"extends": "@tsconfig/node16/tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"moduleResolution": "Node16", // Use Node.js 16-style module resolution
|
"moduleResolution": "node", // Tell tsc to look in node_modules for modules
|
||||||
"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": []
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user