vibetunnel/web/tsconfig.json
2025-06-23 15:18:45 +02:00

31 lines
No EOL
674 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": ["ES2020", "dom"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": [
"src/server/**/*",
"src/shared/**/*",
"src/cli.ts"
],
"exclude": [
"node_modules",
"dist",
"public",
"src/client/**/*"
]
}