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

31 lines
558 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,
2022-02-19 02:29:14 +00:00
"jsx": "preserve"
},
"include": [
2022-02-19 02:29:14 +00:00
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}