Vite 运行 TypeScript 文件原理剖析 All In One

2022/7/14 6:20:19

本文主要是介绍Vite 运行 TypeScript 文件原理剖析 All In One,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Vite 运行 TypeScript 文件原理剖析 All In One

Vanilla + TypeScript

# create project
$ yarn create vite

# install
$ yarn

# dev
$ yarn dev

ESM

import './style.css'

const app = document.querySelector<HTMLDivElement>('#app')!

app.innerHTML = `
  <h1>Hello Vite!</h1>
  <a href="https://vitejs.dev/guide/features.html" target="_blank">Documentation</a>
`

interface Human {
  name: string;
}

class Person implements Human {
  name: string;
  constructor(name: string) {
    this.name = name;
  }
  getName() {
    console.log('name', this.name);
  }
}

const person:Person = new Person('xgqfrms');

person.getName();
person.name;

Vite 处理后, ts => js ✅

浏览器直接访问 HTTP Server ❌

Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "video/mp2t".
Strict MIME type checking is enforced for module scripts per HTML spec.

refs


Flag Counter

©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载



这篇关于Vite 运行 TypeScript 文件原理剖析 All In One的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程