Graphical PDS migrator for AT Protocol
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "CommonJS",
5 "moduleResolution": "node",
6 "esModuleInterop": true,
7 "allowSyntheticDefaultImports": true,
8 "allowImportingTsExtensions": true,
9 "strict": true,
10 "skipLibCheck": true,
11 "forceConsistentCasingInFileNames": true,
12 "resolveJsonModule": true,
13 "declaration": false,
14 "types": [
15 "jest",
16 "node"
17 ],
18 "baseUrl": ".",
19 "paths": {
20 "../lib/*": [
21 "../lib/*"
22 ],
23 "../*": [
24 "../*"
25 ]
26 }
27 },
28 "include": [
29 "**/*.ts",
30 "../lib/**/*.ts"
31 ],
32 "exclude": [
33 "node_modules"
34 ]
35}