[READ-ONLY] Mirror of https://github.com/andrioid/n8n-nodes-atproto. atproto node for n8n
575 B
23 lines
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "commonjs",
5 "strict": true,
6 "esModuleInterop": true,
7 "skipLibCheck": true,
8 "forceConsistentCasingInFileNames": true,
9 "resolveJsonModule": true,
10 "declaration": true,
11 "declarationMap": true,
12 "sourceMap": true,
13 "outDir": "dist",
14 "rootDir": "src",
15 "baseUrl": ".",
16 "paths": {
17 "@atproto/api": ["node_modules/@atproto/api/dist/index"],
18 "@atproto/*": ["node_modules/@atproto/*"]
19 }
20 },
21 "include": ["src/**/*.ts"],
22 "exclude": ["node_modules", "dist"]
23}