mirror of
https://github.com/langchain-ai/open-canvas.git
synced 2026-07-01 19:55:05 -04:00
38 lines
743 B
JSON
38 lines
743 B
JSON
{
|
|
"extends": "@tsconfig/recommended",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"target": "ES2021",
|
|
"lib": [
|
|
"ES2021",
|
|
"ES2022.Object",
|
|
"DOM",
|
|
"es2023"
|
|
],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"useDefineForClassFields": true,
|
|
"strictPropertyInitialization": false,
|
|
"allowJs": true,
|
|
"strict": true
|
|
},
|
|
"include": [
|
|
"src/"
|
|
],
|
|
"exclude": [
|
|
"node_modules/",
|
|
"dist"
|
|
]
|
|
}
|