chore: centralize common TS config options

This commit is contained in:
Dragory 2024-01-27 12:50:09 +02:00
parent b83f388096
commit 7ba318a6d9
No known key found for this signature in database
4 changed files with 23 additions and 33 deletions

View file

@ -1,16 +1,9 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"moduleResolution": "NodeNext",
"module": "NodeNext",
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "es2022",
"lib": ["es2022"],
"baseUrl": "src",
"resolveJsonModule": true,
"esModuleInterop": true,
"outDir": "./dist"
},
"include": ["src/**/*.ts"]