One-click backups for AT Protocol
1{
2 "compilerOptions": {
3 "target": "ES2017",
4 "lib": [
5 "dom",
6 "dom.iterable",
7 "esnext"
8 ],
9 "allowJs": true,
10 "skipLibCheck": true,
11 "strict": false,
12 "noEmit": true,
13 "incremental": true,
14 "module": "esnext",
15 "esModuleInterop": true,
16 "moduleResolution": "bundler",
17 "resolveJsonModule": true,
18 "isolatedModules": true,
19 "jsx": "preserve",
20 "plugins": [
21 {
22 "name": "next"
23 }
24 ],
25 "baseUrl": ".",
26 "paths": {
27 "@/*": [
28 "./*"
29 ]
30 }
31 },
32 "include": [
33 "next-env.d.ts",
34 ".next/types/**/*.ts",
35 "**/*.ts",
36 "**/*.tsx"
37 ],
38 "exclude": [
39 "node_modules"
40 ]
41}