23 lines
598 B
JSON
23 lines
598 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"declaration": true,
|
|
"stripInternal": true,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"noUncheckedIndexedAccess": false,
|
|
"plugins": [
|
|
{
|
|
"name": "@effect/language-service",
|
|
"transform": "@effect/language-service/transform",
|
|
"namespaceImportPackages": ["effect", "@effect/*"]
|
|
}
|
|
]
|
|
},
|
|
"include": ["src"]
|
|
}
|