63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"types": ["vite/client", "node"],
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@bytelyst/api-client": [
|
|
"../../learning_ai_common_plat/packages/api-client/dist/index.d.ts"
|
|
],
|
|
"@bytelyst/design-tokens": [
|
|
"../../learning_ai_common_plat/packages/design-tokens/dist/index.d.ts"
|
|
],
|
|
"@bytelyst/errors": [
|
|
"../../learning_ai_common_plat/packages/errors/dist/index.d.ts"
|
|
],
|
|
"@bytelyst/kill-switch-client": [
|
|
"../../learning_ai_common_plat/packages/kill-switch-client/dist/index.d.ts"
|
|
],
|
|
"@bytelyst/react-auth": [
|
|
"../../learning_ai_common_plat/packages/react-auth/dist/index.d.ts"
|
|
],
|
|
"@bytelyst/telemetry-client": [
|
|
"../../learning_ai_common_plat/packages/telemetry-client/dist/index.d.ts"
|
|
],
|
|
"@bytelyst/ui": [
|
|
"../../learning_ai_common_plat/packages/ui/dist/index.d.ts"
|
|
],
|
|
"monaco-editor": [
|
|
"../node_modules/.pnpm/monaco-editor@0.55.1/node_modules/monaco-editor/esm/vs/editor/editor.api"
|
|
],
|
|
"monaco-editor/*": [
|
|
"../node_modules/.pnpm/monaco-editor@0.55.1/node_modules/monaco-editor/*"
|
|
]
|
|
},
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true
|
|
},
|
|
"include": ["src", "../shared/**/*.ts"],
|
|
"exclude": [
|
|
"../shared/platform-clients.ts",
|
|
"../shared/platform-mobile.ts"
|
|
]
|
|
}
|