vibetunnel/web/tsconfig.json
2025-06-24 01:33:10 +02:00

37 lines
No EOL
843 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,
"useDefineForClassFields": false,
"typeRoots": ["./node_modules/@types"]
},
"include": [
"src/server/**/*",
"src/shared/**/*",
"src/types/**/*",
"src/cli.ts"
],
"exclude": [
"node_modules",
"dist",
"public",
"src/client/**/*"
],
"references": [
{ "path": "./tsconfig.client.json" },
]
}