set up typescript-rtti (WIP)

This commit is contained in:
Jos de Jong 2023-01-24 17:46:53 +01:00
parent 6492ffda90
commit 39510cbeda
9 changed files with 274 additions and 14 deletions

View file

@ -2,6 +2,15 @@
"compilerOptions": {
"target": "ES2022",
"rootDir": "./src",
"outDir": "./obj"
"outDir": "./build",
"esModuleInterop": true,
"allowJs": false,
"noImplicitAny": false,
"moduleResolution": "Node",
"plugins": [
{
"transform": "typescript-rtti/dist/transformer"
}
]
}
}