报错如下:
Failed to load resource: the server responded with a status of 404 (Not Found) http://…ake_game/bin/game
我自己排查过,是因为加载的文件没有后缀,正确的加载应该是 game.js ,我只要修改 main.js 就可以了,import { *Game* } from './game';
改成import { *Game* } from './game.js';
可是 main.js 是 main.ts 生成的。请问这个有什么解决方法?
项目目录结构如下:
│ index.html
│ package-lock.json
│ package.json
│ tsconfig.json
├─bin
│ game.js
│ game.js.map
│ main.js
│ main.js.map
│ snake.js
│ snake.js.map
│
└─src
game.ts
main.ts
snake.ts
index.html
<script src="./bin/main.js" type="module"></script>
main.ts
import { Game } from './game';
const game = new Game();
game.start();
game.ts
export class Game {
}
tsconfig.json
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"sourceMap": true,
"outDir": "./bin"
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.