14 lines
282 B
JSON
14 lines
282 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
},
|
|
"plugins": [{ "name": "next" }],
|
|
"strict": true
|
|
},
|
|
"include": ["next-env.d.ts", "src", "*.ts", "*.mjs", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|