diff options
author | 2023-11-09 18:07:49 +0100 | |
---|---|---|
committer | 2023-11-09 11:07:49 -0600 | |
commit | db4d0c1498b6083a5717622d467677175b93f572 (patch) | |
tree | 34b174f03a9189d9a1f7d593e43606fa0db0f805 | |
parent | 1eb5d7fa7e8c0b046b794aedcb505c251ce2e9f9 (diff) | |
download | astro-db4d0c1498b6083a5717622d467677175b93f572.tar.gz astro-db4d0c1498b6083a5717622d467677175b93f572.tar.zst astro-db4d0c1498b6083a5717622d467677175b93f572.zip |
chore: Update docs for TS 5 presets (#9025)
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
Diffstat (limited to '')
-rw-r--r-- | packages/astro/tsconfigs/base.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/tsconfigs/base.json b/packages/astro/tsconfigs/base.json index 578693195..371b2a15d 100644 --- a/packages/astro/tsconfigs/base.json +++ b/packages/astro/tsconfigs/base.json @@ -4,7 +4,7 @@ // Enable top-level await, and other modern ESM features. "target": "ESNext", "module": "ESNext", - // Enable node-style module resolution, for things like npm package imports. + // Enable module resolution without file extensions on relative paths, for things like npm package imports. "moduleResolution": "Bundler", // Allow importing TypeScript files using their native extension (.ts(x)). "allowImportingTsExtensions": true, |