link-stack/apps/leafcutter/tsconfig.json

30 lines
697 B
JSON
Raw Permalink 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 09:41:41 +02:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
2023-07-05 09:39:24 +00:00
"exclude": ["node_modules", "babel__core"]
2023-02-13 13:46:56 +00:00
}