flockstr/tsconfig.json

35 lines
679 B
JSON
Raw Normal View History

2023-10-13 08:39:50 -04:00
{
"compilerOptions": {
2023-10-13 09:23:11 -04:00
"target": "es2017",
2023-10-13 08:39:50 -04:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
2023-10-13 09:23:11 -04:00
// "moduleResolution": "bundler",
"moduleResolution": "Node",
2023-10-13 08:39:50 -04:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
2023-10-13 09:23:11 -04:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"prettier.config.js"
],
2023-10-13 08:39:50 -04:00
"exclude": ["node_modules"]
}