56 lines
1007 B
JSON
56 lines
1007 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
/* Bundler */
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
/* Plugins */
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
/* Linting */
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
/* Build */
|
|
"target": "ES2017",
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo"
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".next",
|
|
//
|
|
"**/* copy *.tsx",
|
|
"**/* copy.tsx",
|
|
"**/*.bak",
|
|
"**/*.bak",
|
|
"**/*.bug",
|
|
"**/*.del",
|
|
"**/*.draft",
|
|
"**/*.log",
|
|
"**/*.tmp",
|
|
"**/*del",
|
|
"prisma/*"
|
|
],
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts"
|
|
]
|
|
}
|