addseed-web/tsconfig.json

41 lines
694 B
JSON
Raw Permalink Normal View History

2024-10-12 17:05:06 +08:00
{
"compilerOptions": {
2024-11-05 19:50:02 +08:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2024-10-12 17:05:06 +08:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
2024-11-05 19:50:02 +08:00
"baseUrl": "./",
2024-10-12 17:05:06 +08:00
"incremental": true,
2024-11-05 19:50:02 +08:00
"noImplicitAny": false,
2024-10-12 17:05:06 +08:00
"plugins": [
{
"name": "next"
}
],
"paths": {
2024-11-05 19:50:02 +08:00
"@/*": [
"./src/*"
]
2024-10-12 17:05:06 +08:00
}
},
2024-11-05 19:50:02 +08:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}