link-stack/apps/link/tsconfig.json

44 lines
759 B
JSON
Raw Normal View History

2022-12-02 10:55:56 +00:00
{
"compilerOptions": {
"target": "es5",
2023-06-26 10:07:12 +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-06-26 10:07:12 +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",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
2022-12-02 10:55:56 +00:00
}