mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-25 09:25:50 +00:00
27 lines
No EOL
495 B
JSON
27 lines
No EOL
495 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"lib": ["ES2020"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"types": ["node"],
|
|
"composite": true
|
|
},
|
|
"include": [
|
|
"src/server/**/*",
|
|
"src/shared/**/*",
|
|
"src/types/**/*",
|
|
"src/cli.ts",
|
|
"src/index.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"public",
|
|
"src/client/**/*",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts"
|
|
]
|
|
} |