t2-mapper/tsconfig.json

38 lines
753 B
JSON
Raw Normal View History

2025-09-11 16:48:23 -07:00
{
"compilerOptions": {
2026-03-09 12:38:40 -07:00
"target": "ES2022",
2025-12-14 11:06:57 -08:00
"lib": ["dom", "dom.iterable", "esnext"],
2025-09-11 16:48:23 -07:00
"allowJs": true,
"skipLibCheck": true,
"strict": false,
2025-12-14 11:06:57 -08:00
"noUnusedLocals": true,
2025-09-11 16:48:23 -07:00
"noEmit": true,
"incremental": true,
"module": "esnext",
"esModuleInterop": true,
2026-02-28 17:58:09 -08:00
"moduleResolution": "bundler",
2025-09-11 16:48:23 -07:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
2025-09-11 16:48:23 -07:00
"baseUrl": ".",
"paths": {
2025-12-14 11:06:57 -08:00
"@/*": ["*"]
2025-09-11 16:48:23 -07:00
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
"**/*.ts",
"**/*.tsx",
2025-12-29 20:02:54 -08:00
"docs/types/**/*.ts",
"docs/dev/types/**/*.ts",
".next/dev/types/**/*.ts"
],
2025-12-14 11:06:57 -08:00
"exclude": ["node_modules"]
2025-09-11 16:48:23 -07:00
}