diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index 3fbb53f..1f39a7a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -36,5 +36,9 @@ "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ }, "include": ["src/**/*.ts"], /* Specifies a list of files to be included in compilation */ - "exclude": ["node_modules", "dist", "examples", "**/*.test.ts"] /* Specifies a list of files to be excluded from compilation */ + "exclude": ["node_modules", "dist", "examples", "**/*.test.ts"], /* Specifies a list of files to be excluded from compilation */ + "ts-node": { + "esm": true, + "experimentalSpecifierResolution": "node" + } }
\ No newline at end of file |