portfolio/tsconfig.json

37 lines
653 B
JSON
Raw Normal View History

2022-06-28 19:50:51 +02:00
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2022-06-28 19:50:51 +02:00
"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"
}
]
2022-06-28 19:50:51 +02:00
},
"include": [
"**/**/*.ts",
"**/**/*.tsx",
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
2022-06-28 19:50:51 +02:00
}