copilot-api / tsconfig.json
imseldrith's picture
Initial upload from Colab
9e27976 verified
raw
history blame contribute delete
532 Bytes
{
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"module": "ESNext",
"skipLibCheck": true,
"allowJs": true,
"moduleResolution": "Bundler",
"moduleDetection": "force",
"erasableSyntaxOnly": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
}
}
}