我有一个已经使用了一周左右的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"]
}