Files
web/apps/scandic-web/tsconfig.json
Anton Gunnarsson b535b53901 Merged in feat/shared-ts-config (pull request #1610)
Add typescript-config package with shared configs

* Move web config to shared

* Move design-system ts config to typescript-config package

* Move redis-api tsconfig to typescript-config package

* Sort tsconfig keys

* Update react-library tsconfig

Move declaration and declarationMap from base
Add sourceMap

This fixes Go-to-Definition, debugging and similar in packages/apps where it is consumed

* Update base config module and moduleResolution


Approved-by: Michael Zetterberg
Approved-by: Christian Andolf
2025-03-28 07:07:24 +00:00

23 lines
412 B
JSON

{
"extends": "@scandic-hotels/typescript-config/nextjs.json",
"compilerOptions": {
"plugins": [
{
"name": "next"
},
{ "name": "typescript-plugin-css-modules" }
],
"paths": {
"@/*": ["./*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"netlify/functions/**/*.mts"
],
"exclude": ["node_modules"]
}