mirror of
https://github.com/cosscom/coss.git
synced 2026-09-14 20:06:50 +08:00
22 lines
339 B
JSON
22 lines
339 B
JSON
{
|
|
"extends": "@coss/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"next-env.d.ts",
|
|
"next.config.ts",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|