chore: add facades refactor: core module export refactor: inference plugin - deprecate function registering (#537) * refactor: revamp inference plugin as class - deprecate function registering * refactor: monitoring plugin - deprecate service registering (#538) refactor: revamp inference plugin as class - deprecate function registering chore: update import refactor: plugin revamp - model management chore: update build steps and remove experimental plugins refactor: remove pluggable electron chore: add sorting for conversations chore: build plugins for testing chore: consistent plugin directory name chore: docs chore: fix CI chore: update conversation prefix
40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"typeRoots": ["node_modules/@types", "./src/types"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./app/*"],
|
|
"@uikit": ["./uikit"],
|
|
"@services/*": ["./services/*"],
|
|
"@helpers/*": ["./helpers/*"],
|
|
"@utils/*": ["./utils/*"],
|
|
"@models/*": ["./models/*"],
|
|
"@hooks/*": ["./hooks/*"],
|
|
"@containers/*": ["./containers/*"],
|
|
"@screens/*": ["./screens/*"],
|
|
"@plugin/*": ["./plugin/*"],
|
|
"@plugin": ["./plugin"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules", "../electron"]
|
|
}
|