Files
klz-cables.com/tsconfig.json

22 lines
456 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"]
}