link-stack/apps/link/tsconfig.json

36 lines
773 B
JSON
Raw Normal View History

2022-12-02 10:55:56 +00:00
{
"compilerOptions": {
"target": "es5",
2023-08-25 07:11:33 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
2022-12-02 10:55:56 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"paths": {
2023-08-25 07:11:33 +00:00
"@/*": ["./*", "../../node_modules/*"]
},
2023-06-26 10:07:12 +00:00
"baseUrl": ".",
"plugins": [
{
"name": "next"
}
]
2022-12-02 10:55:56 +00:00
},
2023-06-26 10:07:12 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
2023-08-25 07:11:33 +00:00
".next/types/**/*.ts",
"../leafcutter/app/(login)/login/link/_components/AutoLogin.tsx"
2023-06-26 10:07:12 +00:00
],
2023-08-25 07:11:33 +00:00
"exclude": ["node_modules"]
2022-12-02 10:55:56 +00:00
}