Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
chore: move tsconfig.base.json to tsconfig.json
Browse files Browse the repository at this point in the history
this is the default path used by most dev tooling to look for typescript
config, therefore this change makes some tool configuration easier.
  • Loading branch information
owenpearson committed Jul 25, 2023
1 parent a405fa8 commit 2c83037
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tsconfig.cjs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "./tsconfig.base.json",
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "CommonJS",
"outDir": "dist/cjs"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.mjs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "./tsconfig.base.json",
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "ES6",
"outDir": "dist/mjs"
Expand Down

0 comments on commit 2c83037

Please sign in to comment.