Skip to content

Commit 78a8d78

Browse files
WIP
1 parent 6403b39 commit 78a8d78

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

package-lock.json

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"name": "ods-charts",
33
"description": "ODS Charts is based on Apache ECharts and provides Orange charts components.",
44
"version": "0.1.0-alpha.2",
5+
"type": "module",
56
"author": "",
67
"contributors": [],
78
"license": "MIT",
89
"files": [
910
"./dist/**/*"
1011
],
11-
"main": "./dist/ods-charts.js",
12+
"exports": "./dist/ods-charts.js",
1213
"types": "./dist/ods-charts.d.js",
1314
"scripts": {
1415
"build": "webpack",
@@ -22,6 +23,7 @@
2223
"typedoc": "typedoc --out docs/api src/ods-charts.ts --disableSources --excludePrivate --excludeProtected --readme docs/README.md"
2324
},
2425
"devDependencies": {
26+
"@types/echarts": "^4.9.22",
2527
"echarts": "^5.4.3",
2628
"serve": "^14.2.1",
2729
"ts-loader": "^9.5.1",

tsconfig.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
2727

2828
/* Modules */
29-
"module": "commonjs" /* Specify what module code is generated. */,
29+
"module": "ESNext" /* Specify what module code is generated. */,
3030
// "rootDir": "./", /* Specify the root folder within your source files. */
3131
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
3232
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
@@ -40,7 +40,7 @@
4040
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
4141
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
4242
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
43-
"resolveJsonModule": true /* Enable importing .json files. */,
43+
// "resolveJsonModule": true /* Enable importing .json files. */,
4444
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
4545
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
4646

@@ -107,7 +107,5 @@
107107
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
108108
"skipLibCheck": true /* Skip type checking all .d.ts files. */
109109
},
110-
"exclude": [
111-
"./test/"
112-
]
110+
"exclude": ["./test/"]
113111
}
File renamed without changes.

0 commit comments

Comments
 (0)