my monorepo for atproto based applications
1{
2 "compilerOptions": {
3 "lib": ["ESNext"],
4 "noEmit": true,
5 "module": "NodeNext",
6 "target": "ESNext",
7 "esModuleInterop": true,
8 "moduleResolution": "nodenext",
9 "alwaysStrict": true,
10 "allowUnreachableCode": false,
11 "strictNullChecks": true,
12 "skipLibCheck": true,
13 "allowImportingTsExtensions": true,
14 "pretty": true,
15 "strict": true,
16 "experimentalDecorators": true,
17 "noFallthroughCasesInSwitch": true,
18 "noImplicitReturns": true
19 },
20 "exclude": ["node_modules"]
21}