混淆:如何使用es6浏览器模块withTypescript(没有模块捆绑器)

时间:2018-05-14 15:22:50

标签: typescript vuejs2 es6-modules

我想用es6模块组织我的打字稿代码并通过脚本类型="模块"加载它们。直接在浏览器中。我检查了支持(https://caniuse.com/#feat=es6-module),它会起作用。我使用chrome版本66。

我尝试过没有成功(参见下面的代码),而且我对使用正确的策略感到困惑。

解决方案1 ​​:在app.ts文件中,我应该导入外部模块,但是如何加载正确的js文件?

解决方案2 :在app.ts文件中,我应该直接导入.js代码,但是如何引用.d.ts文件进行类型检查?

非常感谢任何帮助。

=============================================== ========================

这是我试过的代码

我的index.html文件

<!-- index.html -->
<!DOCTYPE html>
<html>

<head>
  <title>Welcome</title>
</head>

<body>
  <div id="app">
    <img src="https://vuejs.org/images/logo.png" alt="Vue logo">
    <h1>{{ msg }}</h1>
  </div>

  <script type="module" src="app.js"></script>
</body>

</html>

我的app.ts文件

//Solution 1
// import Vue from "vue"; // Uncaught TypeError: Failed to resolve module specifier "vue". Relative references must start with either "/", "./", or "../".

//Solution 2
import Vue from "./Vendors/vue.esm.browser.js"; // It works in the browser but i have lost the definition inside Typescript file

var app = new Vue({
    el: '#app',
    data: {
        msg: 'hello :)!'
    }
});

我的tsconfig.json文件

// tsconfig.json
{
  "compilerOptions": {
    "strict": true,
    "target": "es6",
    "module": "es6",
    "moduleResolution": "node",
    "allowJs": true
  }
}

我的package.json文件

{
  "name": "vuejsbrowseresmodule",
  "version": "1.0.0",
  "description": "",
  "main": "app.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "vue": "^2.5.16"
  }
}

1 个答案:

答案 0 :(得分:0)

经过数天的研究,我找到了答案。 目前,如果不使用模块加载器,就不可能使用typescript。 关于打印机中的本地加载器,有很多关于打字稿的讨论。

此处提供了更多信息=&gt;

https://github.com/Microsoft/TypeScript/issues/16577 https://github.com/Microsoft/TypeScript/issues/13422

一个有趣的命题草案已经开始,可以在这里找到=&gt;

https://github.com/domenic/package-name-maps