WIP: A simple cli for daily tangled use cases and AI integration. This is for my personal use right now, but happy if others get mileage from it! :)
1{
2 "compilerOptions": {
3 "target": "ES2023",
4 "module": "NodeNext",
5 "moduleResolution": "NodeNext",
6 "lib": ["ES2023"],
7 "outDir": "./dist",
8 "strict": true,
9 "esModuleInterop": true,
10 "skipLibCheck": true,
11 "forceConsistentCasingInFileNames": true,
12 "resolveJsonModule": true,
13 "declaration": true,
14 "declarationMap": true,
15 "sourceMap": true,
16 "erasableSyntaxOnly": true,
17 "isolatedDeclarations": true,
18 "noUnusedLocals": true,
19 "noUnusedParameters": true,
20 "noImplicitReturns": true,
21 "noFallthroughCasesInSwitch": true,
22 "allowSyntheticDefaultImports": true
23 },
24 "include": ["src/**/*", "tests/**/*"],
25 "exclude": ["node_modules", "dist", "src/lexicon/**"]
26}