ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "moduleResolution": "bundler",
6 "lib": ["ES2022"],
7 "outDir": "./dist",
8 "strict": true,
9 "esModuleInterop": true,
10 "allowSyntheticDefaultImports": true,
11 "skipLibCheck": true,
12 "forceConsistentCasingInFileNames": true,
13 "resolveJsonModule": true,
14 "isolatedModules": true,
15 "types": ["node"],
16 "paths": {
17 "@atlast/shared": ["../shared/src/index.ts"],
18 "@atlast/shared/*": ["../shared/src/*"]
19 }
20 },
21 "include": ["src/**/*"],
22 "exclude": ["node_modules", "dist", "__tests__"]
23}