link-stack/apps/link/tsconfig.json

29 lines
665 B
JSON
Raw Permalink Normal View History

2022-12-02 10:55:56 +00:00
{
"compilerOptions": {
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",
2024-05-14 09:40:58 +02:00
"moduleResolution": "bundler",
2022-12-02 10:55:56 +00:00
"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
},
2024-05-14 09:40:58 +02:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
2023-08-25 07:11:33 +00:00
"exclude": ["node_modules"]
2022-12-02 10:55:56 +00:00
}