npm package diff
Package: @tsconfig/svelte
Versions: 4.0.1 - 5.0.0
Modified: package/package.json
Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -10,6 +10,6 @@
"keywords": [
"tsconfig",
"svelte"
],
- "version": "4.0.1"
+ "version": "5.0.0"
}
\ No newline at end of file
Modified: package/tsconfig.json
Index: package/tsconfig.json
===================================================================
--- package/tsconfig.json
+++ package/tsconfig.json
@@ -1,11 +1,12 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Svelte",
- "_version": "4.0.0",
+ "_version": "5.0.0",
"compilerOptions": {
- "moduleResolution": "node",
+ "module": "esnext",
+ "moduleResolution": "bundler",
"target": "es2017",
/**
Svelte Preprocess cannot figure out whether you have a value or a type, so tell TypeScript
to enforce using `import type` instead of `import` for Types.
Modified: package/README.md
Index: package/README.md
===================================================================
--- package/README.md
+++ package/README.md
@@ -22,12 +22,13 @@
```jsonc
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Svelte",
- "_version": "4.0.0",
+ "_version": "5.0.0",
"compilerOptions": {
- "moduleResolution": "node",
+ "module": "esnext",
+ "moduleResolution": "bundler",
"target": "es2017",
/**
Svelte Preprocess cannot figure out whether you have a value or a type, so tell TypeScript
to enforce using `import type` instead of `import` for Types.