Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix ts build
Browse files Browse the repository at this point in the history
laves committed Feb 9, 2024
1 parent b4cbde9 commit 8b0c037
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@picovoice/react-native-voice-processor",
"version": "1.2.1",
"version": "1.2.2",
"description": "A library for real-time voice processing in React Native.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
@@ -20,6 +20,7 @@
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!test",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
2 changes: 1 addition & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

{
"extends": "./tsconfig",
"exclude": ["example"]
"exclude": ["example", "test"]
}
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -24,5 +24,8 @@
"skipLibCheck": true,
"strict": true,
"target": "esnext"
}
},
"exclude": [
"test"
]
}

0 comments on commit 8b0c037

Please sign in to comment.