www/tsconfig.json

40 lines
646 B
JSON
Raw Permalink Normal View History

2024-09-12 17:28:33 -07:00
{
"compilerOptions": {
2024-09-13 18:27:40 -07:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2024-09-12 17:28:33 -07:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
2024-09-13 18:27:40 -07:00
"@/*": [
"./src/*"
]
2024-09-12 17:28:33 -07:00
}
},
2024-09-13 18:27:40 -07:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
2024-09-12 17:28:33 -07:00
}