pollo/tsconfig.json

40 lines
797 B
JSON
Raw Permalink Normal View History

2023-04-20 04:20:00 -06:00
{
"compilerOptions": {
"target": "es2017",
2023-08-31 00:14:20 -06:00
"lib": ["dom", "dom.iterable", "esnext"],
2023-04-20 04:20:00 -06:00
"allowJs": true,
"checkJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
2023-09-24 23:49:24 -06:00
"@/*": ["./app/*"]
2023-08-27 23:57:17 -06:00
},
"plugins": [
{
"name": "next"
}
]
2023-04-20 04:20:00 -06:00
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
2023-08-27 23:57:17 -06:00
"**/*.mjs",
".next/types/**/*.ts"
2023-04-20 04:20:00 -06:00
],
2023-08-31 00:14:20 -06:00
"exclude": ["node_modules"]
2023-04-20 04:20:00 -06:00
}