Skip to content

Commit 79ca7d2

Browse files
authored
Update README.md
1 parent 1064a31 commit 79ca7d2

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

300/README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,32 @@ Your directory structure might look like this:
261261
├── workspace.json
262262
```
263263

264+
Where ```tsconfig.base.json``` contains:
265+
266+
```
267+
{
268+
"compileOnSave": false,
269+
"compilerOptions": {
270+
"rootDir": ".",
271+
"sourceMap": true,
272+
"declaration": false,
273+
"moduleResolution": "node",
274+
"emitDecoratorMetadata": true,
275+
"experimentalDecorators": true,
276+
"importHelpers": true,
277+
"target": "es2015",
278+
"module": "esnext",
279+
"lib": ["es2020", "dom"],
280+
"skipLibCheck": true,
281+
"skipDefaultLibCheck": true,
282+
"baseUrl": ".",
283+
"paths": {}
284+
},
285+
"exclude": ["node_modules", "tmp"]
286+
}
287+
```
288+
/hatch-project/src/hatch_project/tsconfig.base.json
289+
264290
### Running Commands
265291
After setting up `workspace.json`, you can run commands like:
266292

0 commit comments

Comments
 (0)