fosrl.pangolin/tsconfig.json

33 lines
868 B
JSON
Raw Permalink Normal View History

2024-09-27 19:48:49 -04:00
{
2024-09-27 21:39:03 -04:00
"compilerOptions": {
2024-10-23 13:30:23 -04:00
"lib": ["dom", "dom.iterable", "esnext"],
2024-09-27 21:39:03 -04:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
2024-09-28 18:17:37 -04:00
"moduleResolution": "node",
2024-09-27 21:39:03 -04:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": "src",
"paths": {
2024-10-23 13:30:23 -04:00
"@server/*": ["../server/*"],
"@test/*": ["../test/*"],
2024-10-23 13:30:23 -04:00
"@app/*": ["*"],
2025-06-15 13:19:07 -04:00
"@cli/*": ["../cli/*"],
2024-10-23 13:30:23 -04:00
"@/*": ["./*"]
2024-09-27 21:39:03 -04:00
},
"plugins": [
{
"name": "next"
}
2024-10-23 13:30:23 -04:00
],
"target": "ES2017"
2024-09-27 21:39:03 -04:00
},
2024-10-23 13:30:23 -04:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}