Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexanderniebuhr/astropix


https://github.com/alexanderniebuhr/astropix

Last synced: 29 days ago
JSON representation

Awesome Lists containing this project

README

        

# Astropix: Monorepository

### Setup

```sh
moon setup && moon sync projects && moon sync codeowners && moon sync hooks

pnpm update -i -r --latest
```

TYPECHECK
ROOT: https://moonrepo.dev/docs/guides/javascript/typescript-project-refs#on-all-projects

```plaintext
NOTES

"typesVersions": {
"*": {
"*": ["./src/index.tsx"],
"icons": ["./src/icons.tsx"]
}
}

"disableSourceOfProjectReferenceRedirect": true, // perf fix, need to build before editor
// "emitDeclarationOnly": true, // for packages
// noEmit: true, // for apps
"module": "NodeNext", // EsNext
"moduleResolution": "NodeNext", // bundler
"useUnknownInCatchVariables": true, // if (err instanceof Error) {}
To start, set the moduleResolution compiler option to "nodenext" (for packages) or "bundler" (for apps)
```