mirror of
https://github.com/marcogll/builderbot-openai-assistants.git
synced 2026-01-13 21:35:19 +00:00
34 lines
664 B
JSON
34 lines
664 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"moduleResolution": "node",
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": false,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"rootDir": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.js",
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts",
|
|
"**e2e**",
|
|
"**mock**"
|
|
]
|
|
} |