usda-food-data-api-server
Version:
USDA Food Data API server for self-hosted API access to the USDA Food Data database
19 lines • 396 B
JSON
{
"compilerOptions": {
"rootDir": "ts",
"outDir": "dist",
"target": "es2020",
"lib": [
"es2020", "DOM"
],
"module": "ES2020", // (A)
"moduleResolution": "Node", // (B)
"strict": true,
"sourceMap": true,
// Needed for CommonJS modules
"allowSyntheticDefaultImports": true, // (C)
"esModuleInterop": true,
//
"declaration": true
}
}