ollama/app/tsconfig.json

21 lines
411 B
JSON
Raw Normal View History

2023-06-22 16:45:31 +00:00
{
"compilerOptions": {
2023-06-23 19:04:38 +00:00
"target": "ES6",
2023-06-22 16:45:31 +00:00
"allowJs": true,
2023-06-23 19:04:38 +00:00
"module": "commonjs",
2023-06-22 16:45:31 +00:00
"skipLibCheck": true,
"esModuleInterop": true,
2023-06-23 19:04:38 +00:00
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".",
"outDir": "dist",
2023-06-22 16:45:31 +00:00
"moduleResolution": "node",
"resolveJsonModule": true,
"paths": {
2023-06-23 19:04:38 +00:00
"*": ["node_modules/*"]
},
"jsx": "react-jsx"
2023-06-22 16:45:31 +00:00
},
2023-06-23 19:04:38 +00:00
"include": ["src/**/*"]
2023-06-22 16:45:31 +00:00
}