34 lines
No EOL
564 B
JSON
34 lines
No EOL
564 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"strict": false,
|
|
"noEmit": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"./src/**/__tests__/*.tsx"
|
|
]
|
|
} |