compro-mit/tsconfig.json

45 lines
766 B
JSON
Raw Normal View History

2026-05-12 18:33:35 +07:00
{
"compilerOptions": {
"target": "ES2017",
2026-05-12 19:59:27 +07:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2026-05-12 18:33:35 +07:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
2026-05-12 19:59:27 +07:00
"@/*": [
"./public/*"
],
"@src/*": [
"./src/*"
],
2026-05-12 18:33:35 +07:00
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"**/*.mts"
],
2026-05-12 19:59:27 +07:00
"exclude": [
"node_modules"
]
}