35 lines
555 B
JSON
35 lines
555 B
JSON
{
|
|
"extends": "@mintel/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
],
|
|
"lib/*": [
|
|
"./lib/*"
|
|
],
|
|
"components/*": [
|
|
"./components/*"
|
|
],
|
|
"data/*": [
|
|
"./data/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"tests/**/*.test.ts",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"scripts",
|
|
"reference",
|
|
"data",
|
|
"remotion"
|
|
]
|
|
} |