Converted the javascript to typescript for help with the developing, ty to the [foundry-vtt-types](https://github.com/League-of-Foundry-Developers/foundry-vtt-types) project.

This commit is contained in:
Marco Tenti
2021-04-08 16:51:51 +02:00
parent 2eca460637
commit 3b7b0e5a39
22 changed files with 8113 additions and 1 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"moduleResolution": "node",
"noEmit": false,
"strict": false,
"target": "es2020",
"lib": [
"DOM",
"ES6",
"ES2020"
],
"types": ["@league-of-foundry-developers/foundry-vtt-types"]
}
}