* Update example chart config type, remove whitespace
* update size limit
module.exports = [
{
path: 'dist/chart.js',
- limit: '78.5 KB',
+ limit: '79 KB',
webpack: false,
running: false
},
```javascript
const cfg = {
- type: 'pie',
+ type: 'line',
data: {
datasets: [{
data: {
```ts
import {ChartData} from 'chart.js';
-const datasets: ChartData <'bar', {key: string, value: number} [] > = {
+const datasets: ChartData <'bar', {key: string, value: number} []> = {
datasets: [{
data: [{key: 'Sales', value: 20}, {key: 'Revenue', value: 10}],
parsing: {