Skip to content

Commit

Permalink
Fix tsconfig includes
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Oct 26, 2021
1 parent 3f29dfa commit 29dbd6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig.json
Expand Up @@ -13,9 +13,9 @@
"outDir": "./es",
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"rootDirs": ["./src", "./test"],
"rootDirs": ["./src"],
"rootDir": "./src",
},
"include": ["src/**/*", "typescript_test/**/*"],
"include": ["./src/**/*"],
"exclude": ["node_modules", "dist"]
}

0 comments on commit 29dbd6e

Please sign in to comment.