t2-mapper/tsconfig.node.json

33 lines
814 B
JSON
Raw Normal View History

2026-03-13 23:00:08 -07:00
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2023",
"lib": ["ES2023"],
"module": "ESNext",
"types": ["node"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
2026-03-16 18:16:34 -07:00
"verbatimModuleSyntax": false,
2026-03-13 23:00:08 -07:00
"moduleDetection": "force",
"noEmit": true,
2026-03-16 18:16:34 -07:00
"baseUrl": "./",
"paths": {
"@/*": ["*"]
},
2026-03-13 23:00:08 -07:00
/* Linting */
"strict": true,
"noUnusedLocals": true,
2026-03-16 18:16:34 -07:00
"noUnusedParameters": false,
2026-03-13 23:00:08 -07:00
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
2026-03-16 18:16:34 -07:00
"include": ["env.d.ts", "vite.config.ts", "relay", "scripts"],
"exclude": ["scripts/play-demo.ts", "scripts/screenshot.ts"]
2026-03-13 23:00:08 -07:00
}