Skip to content

Commit

Permalink
add isolatedModules:false to tsconfig & readme for Deno 1.6.1
Browse files Browse the repository at this point in the history
vmasdani authored and tksilicon committed Nov 5, 2020
1 parent ba33409 commit 6631d3b
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -172,7 +172,8 @@ Since this library needs to use Typescript Decorators and other features, a cust
"allowJs": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "esnext"
"module": "esnext",
"isolatedModules": false
}
}
```
@@ -316,4 +317,4 @@ Following types of an index are available
| fulltext | true

#### Character sets
list of valid character sets is based on https://dev.mysql.com/doc/refman/8.0/en/charset-charsets.html
list of valid character sets is based on https://dev.mysql.com/doc/refman/8.0/en/charset-charsets.html
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
"allowJs": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "esnext"
"module": "esnext",
"isolatedModules": false
}
}

0 comments on commit 6631d3b

Please sign in to comment.