Files
puter/tsconfig.json
Daniel Salazar 99d96edd9c feat: s3 fs in oss (#2761)
* feat: s3 fs in oss

* feat: new endpoints in OSS

* fix: name of fs extension

* perf: signed uploads

* fix: await socket events to align fs events

* fix: default bucket names

* fix: backend tests

* fix: deps

* fix: order
2026-04-02 11:20:59 -07:00

24 lines
608 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"noEmit": true
},
"include": ["./src/backend", "src/backend/src/deprecated/filesystem/PuterS3StorageStrategy.js"],
"exclude": [
"**/*.test.ts",
"**/*.test.mts",
"**/vitest.config.ts",
"**/vitest.config.mts",
"**/*.spec.ts",
"**/*.spec.mts",
"**/tests/**",
"node_modules",
"dist",
"volatile",
"extensions",
"src/backend/src/services/worker/template/puter-portable.js"
]
}