Add typescript

This commit is contained in:
Anbraten 2024-10-29 11:47:39 +01:00
parent afbfe5d850
commit 8dc72589ca
No known key found for this signature in database
GPG key ID: B1222603899C6B25
10 changed files with 1354 additions and 1742 deletions

25
vitest.config.ts Normal file
View file

@ -0,0 +1,25 @@
import {defineConfig} from 'vitest/config';
import vuePlugin from '@vitejs/plugin-vue';
import {stringPlugin} from 'vite-string-plugin';
import {resolve} from 'node:path';
export default defineConfig({
test: {
include: ['web_src/**/*.test.js'],
setupFiles: ['web_src/js/vitest.setup.js'],
environment: 'happy-dom',
testTimeout: 20000,
open: false,
allowOnly: true,
passWithNoTests: true,
globals: true,
watch: false,
alias: {
'monaco-editor': resolve(import.meta.dirname, '/node_modules/monaco-editor/esm/vs/editor/editor.api'),
},
},
plugins: [
stringPlugin(),
vuePlugin(),
],
});