37 lines
739 B
JSON
37 lines
739 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "esnext"],
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"target": "ES2019",
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
},
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"module": "esnext",
|
|
"typeRoots": ["./types"],
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"packages/**/*"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|