-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
49 lines (47 loc) · 1.06 KB
/
vite.config.ts
File metadata and controls
49 lines (47 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { defineConfig } from 'vite';
import FoundryPlugin from '@rpgmadesimple/foundry-vite-plugin';
import { defineModuleOptions } from '@rpgmadesimple/foundry-vite-plugin/dist/options/moduleOptions';
const options = defineModuleOptions({
id: 'chromatic-canvas',
title: '🎴 Chromatic Canvas (Library)',
description: 'Library that adds special effects to the canvas.',
version: '2.0.0',
library: true,
socket: true,
compatibility: {
minimum: '13',
verified: '13.351'
},
relationships: {
requires: [
{
id: 'debugger',
compatibility: {
minimum: '2',
verified: '2.0.0'
}
},
{
id: 'toolbox',
compatibility: {
minimum: '2',
verified: '2.0.0'
}
}
]
},
authors: [
{
name: 'ZotyDev',
email: 'zotydev@gmail.com',
url: 'https://zoty.dev',
discord: 'zotydev',
},
],
repo: 'https://github.com/RPG-Made-Simple/FVTT-Code',
});
export default defineConfig({
plugins: [
FoundryPlugin(options),
],
});