link-stack/apps/leafcutter/tsconfig.json

41 lines
1.1 KiB
JSON
Raw Normal View History

2023-02-13 13:46:56 +00:00
{
"compilerOptions": {
"target": "es5",
2023-07-05 09:39:24 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
2023-02-13 13:46:56 +00:00
"allowJs": true,
"skipLibCheck": true,
2023-05-24 20:27:57 +00:00
"strict": true,
2023-02-13 13:46:56 +00:00
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
2023-05-25 07:34:58 +00:00
"baseUrl": ".",
"paths": {
2023-07-05 09:39:24 +00:00
"@/*": ["./*", "../../node_modules/*"]
2023-06-28 09:09:45 +00:00
},
"plugins": [
{
"name": "next"
}
]
2023-02-13 13:46:56 +00:00
},
2023-08-25 07:11:33 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"../../packages/leafcutter-common/components/Create.tsx",
"../../packages/leafcutter-common/components/About.tsx",
"../../packages/leafcutter-common/components/FAQ.tsx",
"../../packages/leafcutter-common/components/Trends.tsx",
"../../packages/leafcutter-common/components/Preview.tsx",
"app/(main)/setup/_components/Setup.tsx"
, "app/api/proxy/[[...path]]" ],
2023-07-05 09:39:24 +00:00
"exclude": ["node_modules", "babel__core"]
2023-02-13 13:46:56 +00:00
}