Skip to content

Commit

Permalink
fix: tsconfig include source files
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt committed Aug 10, 2023
1 parent aad77a1 commit db6882f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist"
}
},
"include": ["src/**/*", "__tests__/**/*"]
}
3 changes: 2 additions & 1 deletion packages/indexing/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist"
}
},
"include": ["src/**/*", "__tests__/**/*"]
}
3 changes: 2 additions & 1 deletion packages/ndarray/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist"
}
},
"include": ["index.ts", "__tests__/**/*"]
}
2 changes: 1 addition & 1 deletion packages/storage/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"compilerOptions": {
"outDir": "dist"
},
"include": ["src/**/*.ts", "__tests__/**/*.ts"]
"include": ["src/**/*", "__tests__/**/*"]
}
3 changes: 2 additions & 1 deletion packages/typedarray/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"compilerOptions": {
"outDir": "dist",
"emitDeclarationOnly": true
}
},
"include": ["index.js", "__tests__/**/*"]
}

0 comments on commit db6882f

Please sign in to comment.