Skip to content

Commit

Permalink
Fix tsconfig settings issues
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Nov 2, 2021
1 parent 5102bda commit d50ba6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"outDir": "./es",
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"rootDirs": ["./src", "./test", "./types"],
"rootDirs": ["./src", "./types"],
"rootDir": "./src",
"typeRoots": [
"./node_modules/@types",
"./types"
]
},
"include": ["src/**/*", "est/**/*", "types"],
"exclude": ["node_modules", "dist"]
"include": ["src/**/*", "types"],
"exclude": ["node_modules", "dist", "test/**/*"]
}

0 comments on commit d50ba6a

Please sign in to comment.