๐Ÿ“ฆ payloadcms / website

๐Ÿ“„ tsconfig.json ยท 95 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95{
  "compilerOptions": {
    "target": "ES6",
    "lib": [
      "DOM",
      "DOM.iterable",
      "ES6"
    ],
    "allowJs": true,
    "checkJs": false,
    "skipLibCheck": true,
    "strict": false,
    "forceConsistentCasingInFileNames": true,
    "noEmit": true,
    "incremental": true,
    "esModuleInterop": true,
    "module": "ESNext",
    "moduleResolution": "bundler",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "jsx": "preserve",
    "plugins": [
      {
        "name": "next"
      }
    ],
    "paths": {
      "@blocks/*": [
        "./src/components/blocks/*"
      ],
      "@cloud/*": [
        "./src/app/(frontend)/(cloud)/cloud/*"
      ],
      "@components/*": [
        "./src/components/*"
      ],
      "@docs/*": [
        "./src/docs/*"
      ],
      "@forms/*": [
        "./src/forms/*"
      ],
      "@graphics/*": [
        "./src/graphics/*"
      ],
      "@data": [
        "./src/app/_data"
      ],
      "@data/*": [
        "./src/app/_data/*"
      ],
      "@icons/*": [
        "./src/icons/*"
      ],
      "@hooks/*": [
        "./src/hooks/*"
      ],
      "@providers": [
        "./src/providers"
      ],
      "@providers/*": [
        "./src/providers/*"
      ],
      "@root/*": [
        "./src/*"
      ],
      "@scss/*": [
        "./src/css/*"
      ],
      "@types": [
        "./src/payload-types.ts"
      ],
      "@utilities": [
        "./src/utilities"
      ],
      "@utilities/*": [
        "./src/utilities/*"
      ],
      "@payload-config": [
        "./src/payload.config.ts"
      ],
    },
    "strictNullChecks": true
  },
  "include": [
    "next-env.d.ts",
    "**/*.ts",
    "**/*.tsx",
    ".next/types/**/*.ts"
  ],
  "exclude": [
    "node_modules",
    "pages__old"
  ]
}