jackmerrill.com/tsconfig.json

29 lines
645 B
JSON
Raw Normal View History

2023-05-20 20:04:14 -07:00
{
"compilerOptions": {
2023-05-24 21:49:48 -07:00
"target": "ES2017",
2023-05-20 20:04:14 -07:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}