mirror of
https://github.com/cpacker/MemGPT.git
synced 2025-06-03 04:30:22 +00:00
19 lines
423 B
JSON
19 lines
423 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "esnext",
|
|
"lib": ["es2017", "dom"],
|
|
"declaration": true,
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|