Files
puter/extensions/tsconfig.json
Daniel Salazar e51d0c4600 feat: metering service allowence checks and subscription integration 🚀 (#1749)
* feat: metering allowence checks

* fix: bad math
2025-10-15 02:28:25 -07:00

26 lines
459 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"allowJs": true,
"module": "node16",
"moduleResolution": "node16",
"baseUrl": ".",
"outDir": "/dev/null",
"paths": {
"../src/*": [
"../src/*"
]
},
"typeRoots": [
"../node_modules/@types"
],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true
},
"include": [
"**/*.ts",
"**/*.js",
"*.d.ts"
]
}