VS代码/w。在 TypeScript Monorepo 中更漂亮

Posted

技术标签:

【中文标题】VS代码/w。在 TypeScript Monorepo 中更漂亮【英文标题】:VSCode /w. Prettier in TypeScript Monorepo 【发布时间】:2019-12-07 20:10:56 【问题描述】:

我目前在 Monorepo 设置中通过 VSCode 扩展使用 Prettier。问题是 Prettier 在我的 api 文件夹中不能完全工作。它不遵守默认线宽,并且分号不会自动附加。奇怪的是,我的 www 文件夹照常工作,而且我没有任何缺失的 Prettier 功能。

Prettier 配置是通过 VSCode 中的“用户设置”全局设置的。

www - NextJS api - 阿波罗服务器
|--- api
    |--- package.json
    |--- tsconfig.json 
    |--- server.ts
|--- www
    |--- pages
         |--- index.tsx
    |--- package.json
    |--- tsconfig.json 

www/tsconfig.json


  "compilerOptions": 
    "target": "es5",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": true,
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,
    "noUnusedLocals": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "jsx": "preserve"
  

api/tsconfig.json


  "compilerOptions": 
    "module": "commonjs",
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "target": "es6",
    "moduleResolution": "node",
    "sourceMap": true,
    "outDir": "dist",
    "baseUrl": ".",
    "paths": 
      "*": ["node_modules/*", "src/types/*"]
    
  

【问题讨论】:

【参考方案1】:

尝试将.prettierrc 添加到项目的根目录中,并包含您想要的所有选项。

【讨论】:

以上是关于VS代码/w。在 TypeScript Monorepo 中更漂亮的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Windows 上的“观察输出文件”模式 (tsc -w) 下使用 TypeScript 编译器?

在 vs 代码中调试用 typescript 节点编写的 jasmine 测试

在 VS Code 中强制使用多行 typescript 构造函数

1.8W字TypeScript入门指南:附大量代码实例(收藏!)

VS Code 或 Chrome 开发工具:调试 NPM Workspaces (monorepo) TypeScript + React 代码

VS Code TypeScript Jest 模块映射