7 个回答

两个关键点:

  1. compilerOptions 下面配置"outDir": "./"
  2. 在exclude里面添加需要忽略的目录

例子:

tsconfig.json 配置如下 ----- 忽略node_modules与dist两个文件夹

{
  "compilerOptions": {
    "outDir": "./"
  },
  "exclude": ["node_modules", "dist"]
}

直接在tsconfig.json文件中 compilerOptions 下面加上 "outDir": "xxxx",这个随便填就行,不要和已有的文件夹冲突就好,亲测可用!

两个方法:
1、tsconfig.json中排除

{
    "exclude": ["**/node_modules", [your-file]]
}

2、将提示的文件改为.开头的文件名。如:将postcss.config.js改为.postcssrc.js

tsconfig.json 中配置 include 字段,内容配置为代码中所有 .ts 文件。如果你的 .ts 代码不仅限与 src 目录下,也可以按照格式按需添加。

{
  "compilerOptions": {
    "baseUrl": ".",
    ...
  },
  "include": [
    "./src/**/*.ts"
  ],
  "exclude": [
    "node_modules",
    "dist",
  ]
}

其它程序占用着吧

clipboard.png

tsconfig.json 文件里,添加配置项 exclude ,排除检查 dist 目录即可。

{
  "compilerOptions": {
    "target": "esnext",
    ...
  },
  "exclude": [
    "public",
    "dist"
  ]
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Microsoft
子站问答
访问
宣传栏