mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-02-24 19:42:51 +01:00
20 lines
484 B
JSON
20 lines
484 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"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"
|
||
|
},
|
||
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|