29 lines
722 B
JSON
29 lines
722 B
JSON
// tsconfig.json
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"declaration": true, // Enable declaration file generation
|
|
"emitDeclarationOnly": false, // Emit both JS and declaration files
|
|
"outDir": "./server/public/bundle/types", // Directory for .d.ts files
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": [
|
|
"./*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./shared/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|