mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
10a30cf330
In the system color PR I updated the prettier config to match what we use on zed.dev. I didn't want to format all of styles as it would add a lot of unrelated line changes to that PR. Doing that format now.
13 lines
284 B
JSON
13 lines
284 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2015",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|