問題タブ [meteor-packages]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
meteor - Meteor コンパイラプラグインにインポートファイルを含める方法は?
plugin.js
次の内容の file があるとします。
myExternalFile.js
の横にあるファイルもありますplugin.js
。myExternalFunction
からインポートしmyExternalFile
て で使用したいplugin.js
。
使用してみimport { myExternalFunction } from 'myExternalFile';
ましたが、エラーが表示されます'import' and 'export' may only appear at the top level (17:0)
。
を使用すると、次のrequire
エラーが表示されます: require is not defined
。
最後に、Npm.require
NPM の依存関係ではないため、使用は機能しません。
では、実際にこれを達成するにはどうすればよいでしょうか。