Perplexica/tsconfig.json

28 lines
602 B
JSON
Raw Permalink Normal View History

2024-04-09 16:21:05 +05:30
{
"compilerOptions": {
2025-03-19 16:23:27 +05:30
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
2024-04-09 16:21:05 +05:30
"skipLibCheck": true,
2025-03-19 16:23:27 +05:30
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
},
"target": "ES2017"
2024-04-09 16:21:05 +05:30
},
2025-03-19 16:23:27 +05:30
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
2024-04-09 16:21:05 +05:30
}