Files
atproto/packages/lex/lex-server/tsconfig.examples.json
Matthieu Sieben 9af7a2d122 Password based agent implementation (#4443)
* Password based agent implementation

* tidy

* tidy

* wip

* tidy

* wip

* tidy

* wip

* tests

* tidy

* websocket

* tidy

* tidy

* tidy

* tidy

* tidy

* tidy

* tidy

* tidy

* changeset

* codegen

* tidy

* tidy

* tidy

* tidy

* tests

* tidy

* tidy

* tests

* tidy

* tidy

* tidy

* wip

* tidy

* memoize

* tidy

* tests

* tidy

* files reorg

* Ensure that default values match constraints

* wip

* use vitest to test lex

* Add readme

* fix lint

* add vitest workspace config

* vitest config

* vitest-cfg

* tests

* ignore coverage

* tidy
2026-01-01 13:28:29 +01:00

24 lines
539 B
JSON

{
"extends": ["../../../tsconfig/isomorphic.json"],
"include": [
"./examples/**/*.ts",
"./examples/**/*.js",
"./examples/**/*.mjs",
"./examples/**/*.cjs"
],
"compilerOptions": {
"allowJs": true,
"noImplicitAny": true,
"importHelpers": true,
"noEmit": true,
"target": "ES2023",
"module": "nodenext",
"moduleResolution": "nodenext",
"rewriteRelativeImportExtensions": true,
"erasableSyntaxOnly": true,
"verbatimModuleSyntax": true,
"rootDir": ".",
"baseUrl": "."
}
}