A drop-in replacement for typeorm with nop versions of each construct
npm install nop-typeorm
npm i --save nop-typeorm
`Usage
$3
Add an alias to your vite.config.js. Typically, this would be conditional on a certain environment such as the web.
`js
resolve: {
alias: {
'typeorm': 'nop-typeorm',
}
}
``