speechmap-judges / tsconfig.node.json
pappitti's picture
docker working
4207527
raw
history blame contribute delete
776 Bytes
Invalid JSON: Expected double-quoted property name in JSON at line 12, column 5
{
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2023",
"lib": ["ES2023"],
"module": "NodeNext",
/* Bundler mode */
"moduleResolution": "NodeNext",
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"allowSyntheticDefaultImports": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": [
"vite.config.ts",
"src/types.ts",
"api/**/*.ts",
"src/lib/**/*.ts",
"server.ts"
]
}