mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-26 09:35:52 +00:00
29 lines
No EOL
653 B
JSON
29 lines
No EOL
653 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ES2020",
|
|
"lib": ["ES2020", "DOM"],
|
|
"outDir": "./public",
|
|
"rootDir": "./src/client",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"inlineSourceMap": false,
|
|
"inlineSources": true,
|
|
"declaration": false,
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false
|
|
},
|
|
"include": [
|
|
"src/client/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"src/server.ts"
|
|
]
|
|
} |