updated to pt-api v2

This commit is contained in:
Niki Wix Skaarup 2025-04-06 03:18:16 +02:00
parent fc05ea88c7
commit 6fb3df4dfd
Signed by: nikiskaarup
GPG key ID: FC2F1B116F6E788C
3 changed files with 33 additions and 33 deletions

View file

@ -1,25 +1,25 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"lib": [
"ESNext",
"DOM"
],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,