`tsc`无法将.ts文件编译为.js

时间:2020-08-28 14:55:12

标签: typescript

我有一个已经使用了一周左右的Express.js应用程序。对src中的.ts文件进行了一些更新并在项目根目录中运行tsc之后,我希望compiled文件夹中的.js文件会更新。但是他们没有。

我正在通过在./compiled/server.js的主文件中添加一条控制台语句来对此进行测试。它不会打印。

运行tsc时,我收到一条新提示,没有任何反馈。

运行tsc --watch时,我看到:

[9:51:13 PM] Starting compilation in watch mode...

[9:51:17 PM] Found 0 errors. Watching for file changes.

下面的配置有问题吗?

如果不是,那么可能还有什么问题?

// tsconfig.json
{
  "compilerOptions": {
    "target": "es5",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "module": "CommonJS",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "outDir": "compiled"
  },
  "include": [
    "src", "__mocks__"
  ],
  "exclude": ["node_modules", "**/*.test.ts"]
}

0 个答案:

没有答案