1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-10-16 07:17:28 +00:00
steffoweb/tsconfig.json

38 lines
678 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
2022-02-19 02:29:14 +00:00
"strict": false,
"forceConsistentCasingInFileNames": true,
2022-02-19 02:29:14 +00:00
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2023-12-19 04:07:44 +00:00
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true
},
"include": [
2022-02-19 02:29:14 +00:00
"next-env.d.ts",
"**/*.ts",
2023-12-19 04:07:44 +00:00
"**/*.tsx",
".next/types/**/*.ts"
2022-02-19 02:29:14 +00:00
],
"exclude": [
"node_modules"
]
}