1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-20 06:25:53 +02:00
.profile/apps/website/tsconfig.json

26 lines
629 B
JSON
Raw Normal View History

2021-04-18 01:56:23 +02:00
{
"extends": "@repo/config-typescript/tsconfig.json",
2021-04-18 01:56:23 +02:00
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
2024-01-23 22:01:50 +01:00
"moduleResolution": "Bundler",
"resolveJsonModule": true,
2024-01-23 22:01:50 +01:00
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["@total-typescript/ts-reset", "@repo/i18n/messages.d.ts"],
"incremental": true,
"noEmit": true,
2021-04-18 01:56:23 +02:00
"allowJs": true,
"jsx": "preserve",
2023-04-02 23:16:51 +02:00
"paths": {
"#*": ["./*"]
2023-04-02 23:16:51 +02:00
},
"plugins": [
{
2024-02-15 09:35:58 +01:00
"name": "next"
}
]
2021-04-18 01:56:23 +02:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
2024-02-15 09:35:58 +01:00
"exclude": ["node_modules", ".next"]
2021-04-18 01:56:23 +02:00
}