Files
frontend/tsconfig.json

29 lines
641 B
JSON
Raw Normal View History

2025-07-30 00:16:38 +08:00
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
2025-07-30 02:56:32 +08:00
"moduleResolution": "node",
2025-07-30 00:16:38 +08:00
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
2025-07-30 02:56:32 +08:00
"jsx": "preserve",
"jsxImportSource": "react",
2025-07-30 00:16:38 +08:00
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
2025-07-30 02:56:32 +08:00
},
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts","src"],
2025-07-30 00:16:38 +08:00
"exclude": ["node_modules"]
}