diff options
author | SkyBlockDev <72335827+SkyBlockDev@users.noreply.github.com> | 2021-05-24 21:34:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-24 13:34:19 -0600 |
commit | 61955cac8de4c27f2acbcf1c93a1e03df7b8c43a (patch) | |
tree | b5f749eed0ed800596e5a243d49a80f3cbd2ca06 /.vscode/settings.json | |
parent | 6edfb359bb76b908f1edabfb2d5bf6bd5d20c68e (diff) | |
download | tanzanite-61955cac8de4c27f2acbcf1c93a1e03df7b8c43a.tar.gz tanzanite-61955cac8de4c27f2acbcf1c93a1e03df7b8c43a.tar.bz2 tanzanite-61955cac8de4c27f2acbcf1c93a1e03df7b8c43a.zip |
Switch to pnp and use esbuild instead of tsc (#185)
* Switch to pnp and use esbuild instead of tsc
* fix package.json error
Diffstat (limited to '.vscode/settings.json')
-rw-r--r-- | .vscode/settings.json | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index ffafbc8..8dc9073 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,15 +1,23 @@ { - "editor.defaultFormatter": "esbenp.prettier-vscode", - "editor.formatOnSave": true, - "files.exclude": { - "**/.git": true, - "**/.svn": true, - "**/.hg": true, - "**/CVS": true, - "**/.DS_Store": true, - "node_modules": true - }, - "javascript.preferences.importModuleSpecifier": "project-relative", - "typescript.preferences.importModuleSpecifier": "project-relative", - "typescript.preferences.importModuleSpecifierEnding": "minimal" + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true, + "files.exclude": { + "**/.git": true, + "**/.svn": true, + "**/.hg": true, + "**/CVS": true, + "**/.DS_Store": true, + "node_modules": true + }, + "javascript.preferences.importModuleSpecifier": "project-relative", + "typescript.preferences.importModuleSpecifier": "project-relative", + "typescript.preferences.importModuleSpecifierEnding": "minimal", + "search.exclude": { + "**/.yarn": true, + "**/.pnp.*": true + }, + "eslint.nodePath": ".yarn/sdks", + "prettier.prettierPath": ".yarn/sdks/prettier/index.js", + "typescript.tsdk": ".yarn/sdks/typescript/lib", + "typescript.enablePromptUseWorkspaceTsdk": true } |