@4mbl/tsconfig 4.0.0 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @4mbl/tsconfig Changelog
2
2
 
3
+ ## 4.0.1
4
+
5
+ * Move `baseUrl` definition from the base template to child templates to improve Next.js support.
6
+
3
7
  ## 4.0.0
4
8
 
5
9
  * Migrated from versioned templates to a single template per type. The package version is now used to determine the template version. This simplifies both the maintenance and usage of the package.
package/base.json CHANGED
@@ -8,7 +8,6 @@
8
8
  "skipLibCheck": true,
9
9
  "resolveJsonModule": true,
10
10
  "moduleDetection": "force",
11
- "baseUrl": "${configDir}/src",
12
11
  "paths": {
13
12
  "@/*": ["${configDir}/src/*"]
14
13
  },
package/browser.json CHANGED
@@ -7,6 +7,7 @@
7
7
  "jsx": "react-jsx",
8
8
  "module": "ESNext",
9
9
  "moduleResolution": "Bundler",
10
+ "baseUrl": "${configDir}/src",
10
11
  "noEmit": true,
11
12
  "sourceMap": true
12
13
  }
package/node.json CHANGED
@@ -5,6 +5,7 @@
5
5
  "compilerOptions": {
6
6
  "target": "ESNext",
7
7
  "moduleResolution": "NodeNext",
8
- "module": "NodeNext"
8
+ "module": "NodeNext",
9
+ "baseUrl": "${configDir}/src"
9
10
  }
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4mbl/tsconfig",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "TypeScript configuration templates for various environments.",
5
5
  "type": "module",
6
6
  "author": "4mbl",