mirror of
https://github.com/hexastack/hexabot
synced 2024-11-22 17:48:21 +00:00
35 lines
677 B
JSON
35 lines
677 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"downlevelIteration": true,
|
||
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"noEmit": true,
|
||
|
"esModuleInterop": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "bundler",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"noImplicitAny": false,
|
||
|
"incremental": true,
|
||
|
"plugins": [
|
||
|
{
|
||
|
"name": "next"
|
||
|
}
|
||
|
],
|
||
|
"paths": {
|
||
|
"@/*": ["./src/*"]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"next-env.d.ts",
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx",
|
||
|
".next/types/**/*.ts",
|
||
|
"global.d.ts"
|
||
|
],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|