Skip to content

Commit

Permalink
change build
Browse files Browse the repository at this point in the history
  • Loading branch information
Sultan7rs committed Apr 6, 2024
1 parent b046d0b commit 38442c1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 28 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "msedge-tts-isolate",
"version": "1.3.8",
"version": "1.3.9",
"description": "An Azure Speech Service module that uses the Microsoft Edge Read Aloud API.",
"author": "Sultron <sultron@users.noreply.github.com>",
"license": "MIT",
Expand Down
44 changes: 17 additions & 27 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,19 @@
{
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"docs",
"src/**/*.spec.ts",
],
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"target": "ESNext",
"declaration": true,
"outDir": "dist",
"skipLibCheck": true,
"esModuleInterop": true,
"types": [
"@types/jest",
"@types/node"
]
},
"typedocOptions": {
"entryPoints": ["src/index.ts"],
"out": "docs",
"excludePrivate": true
}
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "docs", "src/**/*.spec.ts"],
"compilerOptions": {
"moduleResolution": "node",
"module": "ESNext",
"target": "ESNext",
"declaration": true,
"outDir": "dist",
"skipLibCheck": true,
"esModuleInterop": true,
"types": ["@types/jest", "@types/node"]
},
"typedocOptions": {
"entryPoints": ["src/index.ts"],
"out": "docs",
"excludePrivate": true
}
}

0 comments on commit 38442c1

Please sign in to comment.