mirror of
https://github.com/cosscom/coss.git
synced 2026-09-14 20:06:50 +08:00
22 lines
445 B
JSON
22 lines
445 B
JSON
{
|
|
"extends": "@coss/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@source/*": ["./.source/*"],
|
|
"@coss/ui/*": ["../../packages/ui/src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"next.config.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|