Invalid JSON:
Expected property name or '}' in JSON
at line 3, column 3
| { | |
| "compilerOptions": { | |
| /* Base Options: */ | |
| "esModuleInterop": true, | |
| "skipLibCheck": true, | |
| "target": "es2022", | |
| "allowJs": true, | |
| "resolveJsonModule": true, | |
| "moduleDetection": "force", | |
| "isolatedModules": true, | |
| /* Strictness */ | |
| "strict": true, | |
| "noUncheckedIndexedAccess": true, | |
| "checkJs": true, | |
| /* Bundled projects */ | |
| "lib": ["dom", "dom.iterable", "ES2022"], | |
| "noEmit": true, | |
| "module": "ESNext", | |
| "moduleResolution": "Bundler", | |
| "jsx": "preserve", | |
| "plugins": [{ "name": "next" }], | |
| "incremental": true, | |
| /* Path Aliases */ | |
| "baseUrl": ".", | |
| "paths": { | |
| "@/*": ["./*"], | |
| "@dokploy/server/*": ["../../packages/server/src/*"] | |
| } | |
| }, | |
| "include": [ | |
| "next-env.d.ts", | |
| "**/*.ts", | |
| "**/*.tsx", | |
| "**/*.cjs", | |
| "**/*.js", | |
| ".next/types/**/*.ts", | |
| "env.js", | |
| "next.config.mjs", | |
| "next-i18next.config.mjs" | |
| ], | |
| "exclude": [ | |
| "node_modules", | |
| "dokploy", | |
| "config", | |
| "dist", | |
| "webpack.config.server.js", | |
| "migration.ts", | |
| "setup.ts" | |
| ] | |
| } | |