@orbcharts/plugins-basic 3.0.0-alpha.58 → 3.0.0-alpha.60

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": "@orbcharts/plugins-basic",
3
- "version": "3.0.0-alpha.58",
3
+ "version": "3.0.0-alpha.60",
4
4
  "description": "plugins for OrbCharts",
5
5
  "author": "Blue Planet Inc.",
6
6
  "license": "Apache-2.0",
@@ -32,11 +32,10 @@
32
32
  "ts-loader": "^9.4.2",
33
33
  "typescript": "^5.0.4",
34
34
  "vite": "^5.3.5",
35
- "vite-plugin-dts": "^3.7.3",
36
- "vite-plugin-tsconfig": "^1.0.5"
35
+ "vite-plugin-dts": "^3.7.3"
37
36
  },
38
37
  "dependencies": {
39
- "@orbcharts/core": "^3.0.0-alpha.54",
38
+ "@orbcharts/core": "^3.0.0-alpha.55",
40
39
  "d3": "^7.8.5",
41
40
  "rxjs": "^7.8.1"
42
41
  }
@@ -1,31 +1,13 @@
1
- import path from "path"
2
1
  import { defineConfig } from 'vite'
3
2
  import dts from 'vite-plugin-dts'
4
- import tsconfig from 'vite-plugin-tsconfig'
5
3
 
6
4
  export default defineConfig(({ command, mode }) => {
7
- const alias = mode === 'production'
8
- ? {}
9
- : {
10
- "@orbcharts/core": path.resolve(__dirname, "./../orbcharts-core")
11
- }
12
-
13
- const tsconfigPath = mode === 'production'
14
- ? 'tsconfig.prod.json'
15
- : 'tsconfig.json'
16
-
17
5
  return {
18
6
  plugins: [
19
- tsconfig({
20
- filename: tsconfigPath
21
- }),
22
7
  dts({
23
8
  insertTypesEntry: true
24
9
  })
25
10
  ],
26
- resolve: {
27
- alias
28
- },
29
11
  compilerOptions: {
30
12
  composite: true
31
13
  },
@@ -1,8 +0,0 @@
1
- {
2
- "extends": "./tsconfig.base.json",
3
- "compilerOptions": {
4
- "paths":{
5
- "@orbcharts/core": ["./../orbcharts-core/src"]
6
- }
7
- }
8
- }
File without changes
File without changes