1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-22 18:42:23 +01:00
developer-roadmap/tsconfig.json

31 lines
559 B
JSON
Raw Normal View History

2021-08-01 13:08:35 +02:00
{
"compilerOptions": {
"target": "es5",
2021-10-28 23:51:16 +02:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2021-08-01 13:08:35 +02:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
2021-11-27 19:12:37 +01:00
"module": "CommonJS",
2021-08-01 13:08:35 +02:00
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2021-10-28 23:51:16 +02:00
"jsx": "preserve",
"incremental": true
2021-08-01 13:08:35 +02:00
},
2021-10-28 23:51:16 +02:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
2021-08-01 13:08:35 +02:00
}