Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

143
Views
Eslint muestra un error: 'importar' y 'exportar' pueden aparecer solo con 'sourceType: module'

Tengo un proyecto HTML + CSS + JS simple, donde quiero usar una clase JS. Definí la clase como:

 class Warning { constructor(id, className) { this.id = id; this.className = className; } add () { $(this.id).addClass(this.className); } remove () { $(this.id).removeClass(this.className); } } export default Warning;

e intenté usarlo en contact.js :

 import Warning from './Warning.js'; const warning = new Warning();

Sin embargo, tanto con la import como con la export , recibí el error ESLint:

 Parsing error: 'import' and 'export' may appear only with 'sourceType: module'

Traté de usar type="module" donde se importa la clase, pero el error sigue ahí:

 <script src="/static/js/Warning.js" charset="utf-8" type="module"></script>

¿Alguna idea de cómo podría usar la clase?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!