chore: cleanup

This commit is contained in:
Nathan Walker
2025-07-14 17:40:50 -07:00
parent b2cfc8045b
commit 7bc57216c0
10 changed files with 69 additions and 150 deletions

View File

@@ -2,6 +2,7 @@
import { defineConfig } from 'vite';
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin';
import { fileURLToPath, URL } from 'node:url';
export default defineConfig({
root: __dirname,
@@ -13,6 +14,10 @@ export default defineConfig({
// },
resolve: {
extensions: ['.ts', '.ios.ts'],
alias: {
// ~ at import root → /absolute/path/to/src
'~': fileURLToPath(new URL('./', import.meta.url)),
},
},
test: {
watch: false,