technovangelist.videoprojects/2024-02-22 embeddings/tsconfig.json
Matt Williams ee02d4318f add feb 22
Signed-off-by: Matt Williams <m@technovangelist.com>
2024-04-08 21:51:41 -07:00

23 lines
482 B
JSON

{
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
/* Linting */
"skipLibCheck": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true
}
}