Add chartjs

This commit is contained in:
2024-03-03 01:01:07 +01:00
parent 481492868b
commit b4794ca42f
114 changed files with 37057 additions and 0 deletions

View File

@ -0,0 +1 @@
module.exports = require('../dist/helpers.cjs');

1
chartjs/helpers/helpers.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from '../dist/helpers/index.js';

View File

@ -0,0 +1 @@
export * from '../dist/helpers.js';

View File

@ -0,0 +1,14 @@
{
"name": "chart.js-helpers",
"private": true,
"description": "Helpers package. Exists to support bundlers without exports support such as webpack 4.",
"type": "module",
"main": "./helpers.cjs",
"module": "./helpers.js",
"exports": {
"types": "./helpers.d.ts",
"import": "./helpers.js",
"require": "./helpers.cjs"
},
"types": "./helpers.d.ts"
}