suna/frontend/tsconfig.json

32 lines
726 B
JSON
Raw Normal View History

2025-03-30 14:48:57 +08:00
{
"compilerOptions": {
2025-04-16 01:20:15 +08:00
"target": "ES2017",
2025-03-30 14:48:57 +08:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
2025-04-16 01:20:15 +08:00
"strict": false,
2025-03-30 14:48:57 +08:00
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
2025-04-16 01:20:15 +08:00
"moduleResolution": "bundler",
2025-03-30 14:48:57 +08:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
2025-04-16 01:20:15 +08:00
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": false,
"ignoreDeprecations": "5.0",
2025-03-30 14:48:57 +08:00
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}