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
©xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/274232.html