Added Custom Docker Action which prints fibonacci

This commit is contained in:
2023-07-27 22:22:23 +02:00
parent 2c1e7b4ed2
commit 45ec9ddd11
24 changed files with 8695 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/test/setup.js',
reporters: ['json'],
outputFile: 'test.json',
exclude: [
'**/node_modules/**',
'**/dist/**',
'**/cypress/**',
'.{idea,git,cache,output,temp}/**',
'./src/config/**',
]
},
});