Files
PreMiD/tsconfig.base.json
Bas van Zanten a624b7a1cb feat: add more api endpoints (#1059)
* chore: worked on the api and lint

* chore: small fixes

* chore: uhm I think this sort is broken

* chore: worked on the api and lint

* chore: small fixes

* chore: uhm I think this sort is broken

* feat: heartbeat

* chore: add prettier ignore

* feat: websocket

* chore: update tsconfig

* chore: lint

* chore: dont require unused fields

* chore: use djs rest

* fix: websocket

* chore: v5

* chore: fix build

---------

Co-authored-by: Florian Metz <me@timeraa.dev>
2024-08-04 00:31:03 +02:00

34 lines
825 B
JSON

// Credit: https://www.totaltypescript.com/tsconfig-cheat-sheet
{
"compilerOptions": {
/* AND if you're building for a library in a monorepo: */
"composite": true,
"target": "es2022",
/* If your code doesn't run in the DOM: */
"lib": ["es2022"],
"moduleDetection": "force",
"module": "NodeNext",
/* If transpiling with TypeScript: */
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"allowJs": true,
/* Strictness */
"strict": true,
"strictNullChecks": true,
"noUncheckedIndexedAccess": true,
/* AND if you're building for a library: */
"declaration": true,
"declarationMap": true,
"outDir": "dist",
"sourceMap": true,
/* Base Options: */
"esModuleInterop": true,
"isolatedModules": true,
"skipLibCheck": true
},
"exclude": ["**/*/node_modules", "**/*/dist"]
}