This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | if git apply --check --ignore-space-change --ignore-whitespace --directory node_modules/typescript/ typescript.patch 2> /dev/null; then | |
| git apply --verbose --ignore-space-change --ignore-whitespace --directory node_modules/typescript/ typescript.patch | |
| fi | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* https://marketplace.visualstudio.com/items?itemName=be5invis.vscode-custom-css */ | |
| /* https://marketplace.visualstudio.com/items?itemName=lehni.vscode-fix-checksums */ | |
| /* sudo chown -R $(whoami) /Applications/Visual\ Studio\ Code.app/Contents/MacOS/Electron */ | |
| /* code ~/.vscode-custom.css */ | |
| .monaco-editor-hover-content { | |
| max-width: 2000px !important; | |
| max-height: 1000px !important; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | max_body_size: 100mb | |
| storage: /opt/verdaccio/storage | |
| auth: | |
| htpasswd: | |
| file: /opt/verdaccio/htpasswd | |
| uplinks: | |
| npmjs: | |
| url: https://registry.npmjs.org/ | |
| packages: | |
| '@*/*': | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import type { THook, THookProps } from '@auto/core' | |
| import type { TReadonly } from 'tsfn' | |
| const getYarnCacheDir = async () => { | |
| const { default: execa } = await import('execa') | |
| const { stdout: yarnCacheDir } = await execa('yarn', ['cache', 'dir']) | |
| return yarnCacheDir | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | * text=auto | |
| # Unity files | |
| *.asset linguist-generated -text -merge=unityamlmerge | |
| *.mat linguist-generated -text -merge=unityamlmerge | |
| *.meta linguist-generated -text -merge=unityamlmerge | |
| *.prefab linguist-generated -text -merge=unityamlmerge | |
| *.unity linguist-generated -text -merge=unityamlmerge | |
| # Image formats | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | type Without<T, U> = { [P in Exclude<keyof T, keyof U>]?: never } | |
| type XOR<T, U> = (T | U) extends object | |
| ? (Without<T, U> & U) | (Without<U, T> & T) | |
| : T | U | |
| // Example | |
| type RenderProps = XOR< | |
| { children: (api: API) => ReactNode }, | |
| { render: (api: API) => ReactNode } | 
OlderNewer