mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 12:57:42 +08:00
35 lines
974 B
TypeScript
35 lines
974 B
TypeScript
/// <reference types='vitest' />
|
||
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,
|
||
cacheDir: '../../node_modules/.vite/packages/core',
|
||
plugins: [nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])],
|
||
// Uncomment this if you are using workers.
|
||
// worker: {
|
||
// plugins: [ nxViteTsPaths() ],
|
||
// },
|
||
resolve: {
|
||
extensions: ['.ts', '.ios.ts'],
|
||
alias: {
|
||
// ‘~’ at import root → /absolute/path/to/src
|
||
'~': fileURLToPath(new URL('./', import.meta.url)),
|
||
},
|
||
},
|
||
test: {
|
||
watch: false,
|
||
globals: true,
|
||
environment: 'node',
|
||
setupFiles: ['vitest.setup.ts'],
|
||
include: ['**/*.{test,spec}.{ts,mts}'],
|
||
reporters: ['default'],
|
||
coverage: {
|
||
reportsDirectory: '../../coverage/packages/core',
|
||
provider: 'v8',
|
||
},
|
||
},
|
||
});
|