mirror of
https://gitee.com/antv/g6.git
synced 2024-12-04 04:38:55 +08:00
b7bbc29704
* refactor: remove g6-plugin-map-view and react-node * refactor: adjust exports * chore: update deps, use turbo to batch build * feat(3d): init g6-extension-3d package * chore: update turbo config * refactor: fix cr issues
20 lines
718 B
TypeScript
20 lines
718 B
TypeScript
// @ts-nocheck
|
|
if (window) {
|
|
// window.g6 = require('@antv/g6/es'); // import the source for debugging
|
|
window.g6 = require('@antv/g6/src'); // import the source for debugging
|
|
|
|
window.layoutGpu = require('@antv/layout-gpu'); // import the source for debugging
|
|
window.algorithm = require('@antv/algorithm');
|
|
window.layoutWasm = require('@antv/layout-wasm'); // import the source for debugging
|
|
window.graphlib = require('@antv/graphlib');
|
|
|
|
window.insertCss = require('insert-css');
|
|
window.util = require('@antv/util');
|
|
window.stats = require('stats.js');
|
|
window.g2 = require('@antv/g2');
|
|
window.antd = require('antd');
|
|
|
|
window.React = require('react');
|
|
window.ReactDOM = require('react-dom');
|
|
}
|