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
17 lines
406 B
JSON
17 lines
406 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"incremental": false,
|
|
"isolatedModules": true,
|
|
"lib": ["es2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ES2022"
|
|
}
|
|
}
|