whisper-tnode
Version:
library for use with whisper.cpp and nodejs or typescript project
40 lines (39 loc) • 976 B
JSON
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"allowJs": true,
"checkJs": true,
"declaration": true,
"preserveSymlinks": true,
"rootDir": "src",
"outDir": "dist",
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "NodeNext",
"importsNotUsedAsValues": "remove",
"strict": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"skipLibCheck": true,
"lib": ["es2015"],
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@whispernode/*": ["src/*"]
},
"plugins": [
{
"transform": "typescript-transform-paths"
},
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
]
},
"include": ["./src"],
"exclude": ["node_modules", ",./lib", "*.test.ts", "whisper.test.ts"]
}