Co-authored-by: Max Tuzzolino <maxtuzz@Maxs-MacBook-Pro.local> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Max Tuzzolino <max.tuzsmith@gmail.com> Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
29 lines
718 B
JSON
29 lines
718 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"outDir": "out",
|
|
"lib": ["ES2022", "DOM"],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": true /* enable all strict type-checking options */,
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/components/*": ["./src/components/*"],
|
|
"@/lib/*": ["./src/lib/*"],
|
|
"@tm/core": ["../core/src"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", ".vscode-test", "out", "dist"]
|
|
}
|