@dnax/core 0.50.1 → 0.51.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnax/core",
3
- "version": "0.50.1",
3
+ "version": "0.51.0",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {
package/types/gen.ts CHANGED
@@ -14,17 +14,6 @@ async function createDnaxDir() {
14
14
  fs.mkdirSync(dirPath, { recursive: true });
15
15
  }
16
16
  }
17
-
18
- // copy tsconfig coentent to to .dnax/tsconfig.json
19
- const tsconfigPath = path.join(dnaxDir, "tsconfig.json");
20
- if (!fs.existsSync(tsconfigPath)) {
21
- fs.writeFileSync(tsconfigPath, JSON.stringify(tsconfig, null, 2));
22
- } else {
23
- const currentContent = fs.readFileSync(tsconfigPath, "utf8");
24
- if (currentContent !== JSON.stringify(tsconfig, null, 2)) {
25
- fs.writeFileSync(tsconfigPath, JSON.stringify(tsconfig, null, 2));
26
- }
27
- }
28
17
  }
29
18
 
30
19
  function generateCollectionTypes() {
@@ -2,7 +2,7 @@
2
2
  "compilerOptions": {
3
3
  "paths": {
4
4
  "#/*": [
5
- "../*"
5
+ "./*"
6
6
  ]
7
7
  },
8
8
  // Enable latest features