0.2.1 + 2.0.0-beta.0 (#6)
Publish / publish (push) Successful in 22s
Lint / lint (push) Successful in 16s

Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: #6
This commit was merged in pull request #6.
This commit is contained in:
2026-06-22 01:35:08 +02:00
parent 3fa879a66d
commit fd0e84f136
21 changed files with 3054 additions and 145 deletions
+39
View File
@@ -0,0 +1,39 @@
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "NodeNext",
"moduleDetection": "force",
"types": ["bun"],
"jsx": "react-jsx",
// Bundler mode
"moduleResolution": "NodeNext",
// "allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
// "noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
// Build
"rootDir": "./src",
"outDir": "./dist",
"declaration": true,
"sourceMap": true,
"plugins": [
{ "name": "@effect/language-service" }
]
},
"include": ["./src"],
}