我希望我的 IIS 正确显示 .ts 文件,TypeScript 是否有任何 MIME 类型?text/javascript 或类似的也可以工作,但有规范吗?
我已经查阅了语言规范,但没有找到任何线索。
我希望我的 IIS 正确显示 .ts 文件,TypeScript 是否有任何 MIME 类型?text/javascript 或类似的也可以工作,但有规范吗?
我已经查阅了语言规范,但没有找到任何线索。
最好知道为什么要提供 TypeScript 文件。
据我了解,TypeScript 用于编译为 Javascript,然后在浏览器中执行。目前,没有对 TypeScript 的原生支持(如果我错了,请纠正我)。
如果您仍想通过 IIS 提供 .ts 文件,您仍然可以在 IIS Admin 中添加与 .ts 关联的自定义 mime-type 。该标准定义了前缀x.
,vnd.
和prs.
, 和 vnd。前缀也列在标准化的 mime 类型text/和application/中。
因此,根据您的使用情况,您可以选择text/x.typescript
或text/prs.typescript
。
将其粘贴在您的 web.config 中;
<configuration>
...
<system.webServer>
<staticContent>
<mimeMap fileExtension=".ts" mimeType="application/x-typescript" />
</staticContent>
</system.webServer>
</configuration>
Deno用于application/typescript
提供 TypeScript 文件,允许您通过以下方式运行它们:
deno run "https://example.com/file.ts"
您可能还需要注释掉TypeScriptAssetHandler
哪些将 .ts 文件转换为 javascript。
<handlers>
<!--<add name="TypeScriptAssetHandler" path="*.ts" verb="GET" type="BundleTransformer.TypeScript.HttpHandlers.TypeScriptAssetHandler, BundleTransformer.TypeScript" resourceType="File" preCondition="" />-->
</handlers>
如果您定义了此处理程序,您最终可能会遇到这样的错误
[HttpException (0x80004005): During the output text content of processed asset an unknown error has occurred.
See more details:
Exception has been thrown by the target of an invocation.]
使用 Apache 2,我只需将 MIME 类型设置为 text/plain。这解决了我得到奇怪结果的问题,因为报告的 MIME 类型是某种视频格式。
您可以在 Apache 2 配置中通过以下方式实现此目的:
<filesMatch "\.(html|htm|js|css|ts|ts!transpiled)$">
FileETag None
<ifModule mod_headers.c>
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</ifModule>
</filesMatch>
AddType text/plain ts