VSCode / w。更漂亮的TypeScript Monorepo

时间:2019-07-30 12:22:40

标签: typescript visual-studio-code prettier

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

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

  • www-NextJS
  • api-Apollo服务器
|--- 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 个答案:

答案 0 :(得分:0)

尝试将.prettierrc添加到项目的根目录,并提供所有想要的选项。