diff options
| author | Shinigami <[email protected]> | 2022-01-19 16:58:23 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-19 16:58:23 +0100 |
| commit | 61d02960a9132fa2c4d4d7259883b2e944233bb9 (patch) | |
| tree | c6708f06fe18a9f54c5d4ee1c529cfb456c7eba9 /tsconfig.json | |
| parent | ae5992039da10fa3f5433f6bfc0e65bc351684fc (diff) | |
| download | faker-61d02960a9132fa2c4d4d7259883b2e944233bb9.tar.xz faker-61d02960a9132fa2c4d4d7259883b2e944233bb9.zip | |
fix: ts support for locales (#169)
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index 1b7403be..168e5148 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,9 @@ "compilerOptions": { "rootDir": "src", "outDir": "lib", - "declaration": true + "declaration": true, + "esModuleInterop": true, + "allowJs": true }, "include": ["src/**/*"], "exclude": ["node_modules"] |
