Skip to content

Commit 52f91b0

Browse files
committed
added frontend/dist into prettier ignore
Signed-off-by: Sayan Banerjee <[email protected]>
1 parent 800844b commit 52f91b0

File tree

3 files changed

+139
-141
lines changed

3 files changed

+139
-141
lines changed

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
node_modules
22
frontend/node_modules
33
backend/node_modules
4+
frontend/dist
45
backend/dist
56
deployment/
67
docs/

backend/.babelrc

+30-33
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,31 @@
11
{
2-
"presets": [
3-
"@babel/preset-env",
4-
"@babel/preset-typescript"
5-
],
6-
"plugins": [
7-
"@babel/plugin-syntax-dynamic-import",
8-
"@babel/plugin-syntax-import-meta",
9-
"@babel/plugin-proposal-class-properties",
10-
"@babel/plugin-proposal-json-strings",
11-
[
12-
"@babel/plugin-proposal-decorators",
13-
{
14-
"legacy": true
15-
}
16-
],
17-
"@babel/plugin-proposal-function-sent",
18-
"@babel/plugin-proposal-export-namespace-from",
19-
"@babel/plugin-proposal-numeric-separator",
20-
"@babel/plugin-proposal-throw-expressions",
21-
"@babel/plugin-proposal-export-default-from",
22-
"@babel/plugin-proposal-logical-assignment-operators",
23-
"@babel/plugin-proposal-optional-chaining",
24-
[
25-
"@babel/plugin-proposal-pipeline-operator",
26-
{
27-
"proposal": "minimal"
28-
}
29-
],
30-
"@babel/plugin-proposal-nullish-coalescing-operator",
31-
"@babel/plugin-proposal-do-expressions",
32-
"@babel/plugin-proposal-function-bind"
33-
]
34-
}
2+
"presets": ["@babel/preset-env", "@babel/preset-typescript"],
3+
"plugins": [
4+
"@babel/plugin-syntax-dynamic-import",
5+
"@babel/plugin-syntax-import-meta",
6+
"@babel/plugin-proposal-class-properties",
7+
"@babel/plugin-proposal-json-strings",
8+
[
9+
"@babel/plugin-proposal-decorators",
10+
{
11+
"legacy": true
12+
}
13+
],
14+
"@babel/plugin-proposal-function-sent",
15+
"@babel/plugin-proposal-export-namespace-from",
16+
"@babel/plugin-proposal-numeric-separator",
17+
"@babel/plugin-proposal-throw-expressions",
18+
"@babel/plugin-proposal-export-default-from",
19+
"@babel/plugin-proposal-logical-assignment-operators",
20+
"@babel/plugin-proposal-optional-chaining",
21+
[
22+
"@babel/plugin-proposal-pipeline-operator",
23+
{
24+
"proposal": "minimal"
25+
}
26+
],
27+
"@babel/plugin-proposal-nullish-coalescing-operator",
28+
"@babel/plugin-proposal-do-expressions",
29+
"@babel/plugin-proposal-function-bind"
30+
]
31+
}

0 commit comments

Comments
 (0)