eny.space Landingpage
1{
2 "compilerOptions": {
3 "target": "ES2019",
4 "lib": [
5 "dom",
6 "dom.iterable",
7 "esnext"
8 ],
9 "allowJs": true,
10 "skipLibCheck": true,
11 "strict": true,
12 "forceConsistentCasingInFileNames": true,
13 "noEmit": true,
14 "esModuleInterop": true,
15 "module": "esnext",
16 "moduleResolution": "node",
17 "resolveJsonModule": true,
18 "allowSyntheticDefaultImports": true,
19 "isolatedModules": true,
20 "incremental": true,
21 "jsx": "react-jsx",
22 "baseUrl": ".",
23 "paths": {
24 "@/actions/*": [
25 "app/actions/*"
26 ],
27 "@/components/*": [
28 "app/components/*"
29 ],
30 "@/lib/*": [
31 "lib/*"
32 ],
33 "@/utils/*": [
34 "utils/*"
35 ]
36 },
37 "plugins": [
38 {
39 "name": "next"
40 }
41 ]
42 },
43 "exclude": [
44 "node_modules"
45 ],
46 "include": [
47 "next-env.d.ts",
48 "**/*.ts",
49 "**/*.tsx",
50 ".next/types/**/*.ts",
51 ".next/dev/types/**/*.ts"
52 ]
53}