feat: add configurable pi statusbar extension

This commit is contained in:
2026-05-03 11:31:46 -04:00
commit c96da624fe
21 changed files with 6150 additions and 0 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"noEmit": true,
"allowImportingTsExtensions": true
},
"include": ["*.ts", "modules/**/*.ts", "providers/**/*.ts", "usage/**/*.ts"]
}