build: switch to @rollup/plugin-typescript

This commit is contained in:
Johannes Loher 2022-01-21 02:26:48 +01:00
parent 8f0c1d4df9
commit e40b3ce419
4 changed files with 480 additions and 1435 deletions

View file

@ -1,14 +1,13 @@
{
"compilerOptions": {
"target": "ES2020",
"lib": ["DOM", "ES2020"],
"target": "ES2021",
"lib": ["ES2021", "DOM"],
"types": ["@league-of-foundry-developers/foundry-vtt-types"],
"esModuleInterop": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"sourceMap": true
"noUncheckedIndexedAccess": true
},
"include": ["src"]
}