feat: torrent-stream plugin

This commit is contained in:
Aleksi Lassila
2025-02-09 04:34:31 +02:00
parent d4030cda9d
commit 6969525464
17 changed files with 4322 additions and 13 deletions

View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"outDir": "./dist",
"baseUrl": "./",
"target": "ES2021",
"sourceMap": true,
"incremental": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": false,
"lib": ["es6"]
},
"include": ["src/**/*.ts"]
}