我的tsconfig.json
文件中包含以下内容:
{
"compilerOptions": {
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"target": "es5",
"module": "commonjs",
"sourceMap": true,
"outDir": "build",
"removeComments": false
}
}
这是我的项目:
但是,在VS Code中运行tsc example.ts
会在根目录中输出example.js
而不进行构建。我该如何解决?