functions.do
Version:
A framework and platform for easily creating, managing, evaluating, and iterating on AI functions & object generation
27 lines • 556 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": ".",
"strict": true,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
},
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": ["node_modules", "dist"]
}