Skip to content

Commit b937bce

Browse files
committed
make yarn build ignore python virtual environment when building the frontend
1 parent 834c8bc commit b937bce

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

tsconfig.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,26 @@
99
"allowSyntheticDefaultImports": true,
1010
"allowJs": true,
1111
"checkJs": false,
12-
"lib": ["esnext", "dom"],
12+
"lib": [
13+
"esnext",
14+
"dom"
15+
],
1316
"outDir": "dist",
1417
"moduleResolution": "node",
1518
"keyofStringsOnly": true,
1619
"skipLibCheck": true
1720
},
18-
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "src/**/*"],
19-
"exclude": ["dist", "node_modules", "build", "scripts"]
21+
"include": [
22+
"**/*.ts",
23+
"**/*.tsx",
24+
"**/*.js",
25+
"src/**/*"
26+
],
27+
"exclude": [
28+
"venv",
29+
"dist",
30+
"node_modules",
31+
"build",
32+
"scripts"
33+
]
2034
}

0 commit comments

Comments
 (0)