File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff 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
265291After setting up ` workspace.json ` , you can run commands like:
266292
You can’t perform that action at this time.
0 commit comments