makearmy-app/tsconfig.json

31 lines
659 B
JSON
Raw Permalink Normal View History

2025-09-22 10:37:53 -04:00
{
"compilerOptions": {
2025-09-30 20:10:07 -04:00
"lib": ["dom", "dom.iterable", "esnext"],
2025-09-22 10:37:53 -04:00
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
2025-09-30 20:10:07 -04:00
"moduleResolution": "bundler",
2025-09-22 10:37:53 -04:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {
2025-09-30 20:10:07 -04:00
"@/*": ["./*"]
2025-09-22 10:37:53 -04:00
},
2025-09-30 20:10:07 -04:00
"plugins": [{ "name": "next" }],
"target": "ES2022"
2025-09-22 10:37:53 -04:00
},
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
"**/*.ts",
"**/*.tsx"
],
2025-09-30 20:10:07 -04:00
"exclude": ["node_modules"]
}