Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
chore: enable type checking for test files
Browse files Browse the repository at this point in the history
  • Loading branch information
vaaski committed Feb 12, 2021
1 parent cd77a2a commit 8dcbb2d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"cSpell.words": [
"Likesv",
"Playlistv",
"Userv",
"lcov",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "opensoundcloud",
"version": "0.0.5",
"description": "A thin SoundCloud API, APIv2 and web-scrape wrapper written in TypeScript.",
"main": "lib/index.js",
"main": "lib/src/index.js",
"files": [
"lib/**/*",
"lib/src/**/*",
".npmrc"
],
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"lib": ["ES2020", "DOM"],
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"outDir": "lib",
"allowJs": true,
"strict": true,
Expand All @@ -13,5 +13,5 @@
"forceConsistentCasingInFileNames": true,
"declaration": true
},
"include": ["src"]
"include": ["src", "tests"]
}

0 comments on commit 8dcbb2d

Please sign in to comment.