Files
omnivore/packages/text-to-speech/tsconfig.json
Hongbo Wu ee3fec9d96 improve text to speech dependency (#1250)
* Generate .d.ts files from TypeScript for text-to-speech project

* Remove module export for htmlToSpeechFile

* Include test
2022-09-28 11:48:06 +08:00

12 lines
223 B
JSON

{
"extends": "@tsconfig/node14/tsconfig.json",
"compilerOptions": {
"outDir": "build",
"rootDir": ".",
"lib": ["dom"],
// Generate d.ts files
"declaration": true
},
"include": ["src", "test"],
}