diff --git a/foundry-augments.d.ts b/foundry-augments.d.ts new file mode 100644 index 0000000..253df15 --- /dev/null +++ b/foundry-augments.d.ts @@ -0,0 +1,3 @@ +interface Game { + readonly settings: ClientSettings; +} \ No newline at end of file diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..97bd771 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "checkJs": true, + "target": "ES6", + "types": [ + "./foundry-augments.d.ts" + ] + }, + "include": [ + "./module/**/*", + "foundry.js" + ] +} \ No newline at end of file