Capital/tsconfig.json

28 lines
598 B
JSON
Raw Permalink Normal View History

2024-01-20 15:19:15 +00:00
{
"compilerOptions": {
2024-02-24 06:16:57 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
2024-02-24 13:56:35 +00:00
"target": "ES2017",
2024-02-24 06:16:57 +00:00
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
2024-01-21 16:28:49 +00:00
}