copilot-api / tsconfig.json
imspsycho's picture
Initial upload from Google Colab
780d695 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/*"]
}
}
}