52 lines
935 B
JSON
52 lines
935 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"rootDir": ".",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"target": "esnext",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": false,
|
|
"types": [
|
|
"jest",
|
|
"node",
|
|
"@types/jest"
|
|
],
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {}
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"build",
|
|
"node_modules",
|
|
".eslintrc.js",
|
|
"dist/**/*.js",
|
|
"**/dist/**/*.js"
|
|
],
|
|
"include": [
|
|
"./**/*.ts",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"references": []
|
|
}
|