29 lines
473 B
JSON
29 lines
473 B
JSON
|
{
|
||
|
"extends": "../../config/tsconfig.base.json",
|
||
|
"compilerOptions": {
|
||
|
"paths": {
|
||
|
"@/*": ["./*"]
|
||
|
},
|
||
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||
|
"plugins": [
|
||
|
{
|
||
|
"name": "next"
|
||
|
}
|
||
|
],
|
||
|
"allowJs": true,
|
||
|
"emitDeclarationOnly": false,
|
||
|
"noEmit": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve"
|
||
|
},
|
||
|
"include": [
|
||
|
"next-env.d.ts",
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx",
|
||
|
"content.d.ts",
|
||
|
".next/types/**/*.ts",
|
||
|
"watcher.ts"
|
||
|
],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|