20 lines
340 B
JSON
20 lines
340 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"app/**/*.ts",
|
|
"app/**/*.tsx",
|
|
"components/**/*.ts",
|
|
"components/**/*.tsx",
|
|
"lib/**/*.ts",
|
|
"lib/**/*.tsx",
|
|
"types/**/*.d.ts"
|
|
],
|
|
"exclude": ["node_modules", "sdk.ts"]
|
|
}
|