androjack-mcp 1.3.3 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/http-server.js +1 -1
- package/build/index.js +1 -1
- package/package.json +6 -1
- package/src/http-server.ts +1 -1
- package/src/index.ts +1 -1
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -40
- package/.github/ISSUE_TEMPLATE/feature_request.md +0 -34
- package/.github/pull_request_template.md +0 -16
- package/CONTRIBUTING.md +0 -27
- package/SECURITY.md +0 -26
- package/assets/AndroJack banner.png +0 -0
- package/assets/killer_argument.png +0 -0
- package/config/antigravity_mcp.json +0 -32
- package/config/claude_desktop_config.json +0 -17
- package/config/cursor_mcp.json +0 -21
- package/config/jetbrains_mcp.json +0 -28
- package/config/kiro_mcp.json +0 -40
- package/config/vscode_mcp.json +0 -24
- package/config/windsurf_mcp.json +0 -18
- package/tsconfig.json +0 -17
package/build/http-server.js
CHANGED
|
@@ -45,7 +45,7 @@ export async function startHttpServer(server) {
|
|
|
45
45
|
res.writeHead(200, { "Content-Type": "application/json" });
|
|
46
46
|
res.end(JSON.stringify({
|
|
47
47
|
name: "androjack-mcp",
|
|
48
|
-
version: "1.3.
|
|
48
|
+
version: "1.3.4",
|
|
49
49
|
description: "Documentation-grounded Android engineering MCP server. " +
|
|
50
50
|
"Forces AI tools to verify official docs before generating Android/Kotlin code.",
|
|
51
51
|
mcp_endpoint: `http://${host}:${port}${MCP_PATH}`,
|
package/build/index.js
CHANGED
|
@@ -38,7 +38,7 @@ import { androidWearOsGuide } from "./tools/wear.js";
|
|
|
38
38
|
// ── Server Instantiation ────────────────────────────────────────────────────
|
|
39
39
|
const server = new McpServer({
|
|
40
40
|
name: "androjack-mcp",
|
|
41
|
-
version: "1.3.
|
|
41
|
+
version: "1.3.4",
|
|
42
42
|
});
|
|
43
43
|
// ── Tool 1: Official Android Documentation Search ──────────────────────────
|
|
44
44
|
server.registerTool("android_official_search", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "androjack-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
|
+
"files": [
|
|
5
|
+
"build/",
|
|
6
|
+
"src/",
|
|
7
|
+
"README.md"
|
|
8
|
+
],
|
|
4
9
|
"description": "AndroJack: AI that actually knows Android. Real-time dependency tracking, modern architectures, and zero hallucinations.",
|
|
5
10
|
"keywords": [
|
|
6
11
|
"ai",
|
package/src/http-server.ts
CHANGED
|
@@ -53,7 +53,7 @@ export async function startHttpServer(server: McpServer): Promise<void> {
|
|
|
53
53
|
res.end(
|
|
54
54
|
JSON.stringify({
|
|
55
55
|
name: "androjack-mcp",
|
|
56
|
-
version: "1.3.
|
|
56
|
+
version: "1.3.4",
|
|
57
57
|
description:
|
|
58
58
|
"Documentation-grounded Android engineering MCP server. " +
|
|
59
59
|
"Forces AI tools to verify official docs before generating Android/Kotlin code.",
|
package/src/index.ts
CHANGED
|
@@ -41,7 +41,7 @@ import { androidWearOsGuide } from "./tools/wear.js";
|
|
|
41
41
|
// ── Server Instantiation ────────────────────────────────────────────────────
|
|
42
42
|
const server = new McpServer({
|
|
43
43
|
name: "androjack-mcp",
|
|
44
|
-
version: "1.3.
|
|
44
|
+
version: "1.3.4",
|
|
45
45
|
});
|
|
46
46
|
|
|
47
47
|
// ── Tool 1: Official Android Documentation Search ──────────────────────────
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
name: Bug Report
|
|
2
|
-
description: File a report to help us improve AndroJack-mcp
|
|
3
|
-
title: "[BUG] <Short description of the bug>"
|
|
4
|
-
labels: [bug]
|
|
5
|
-
assignees: []
|
|
6
|
-
body:
|
|
7
|
-
- type: markdown
|
|
8
|
-
attributes:
|
|
9
|
-
value: |
|
|
10
|
-
Thanks for taking the time to fill out this bug report! 🤖
|
|
11
|
-
- type: input
|
|
12
|
-
id: environment
|
|
13
|
-
attributes:
|
|
14
|
-
label: Environment
|
|
15
|
-
description: What IDE (Cursor, Windsurf, etc.) and Node.js version are you using?
|
|
16
|
-
placeholder: e.g., Cursor v0.40, Node v18.1.0
|
|
17
|
-
validations:
|
|
18
|
-
required: true
|
|
19
|
-
- type: textarea
|
|
20
|
-
id: reproduce
|
|
21
|
-
attributes:
|
|
22
|
-
label: Reproduction Steps
|
|
23
|
-
description: How can we reproduce the issue?
|
|
24
|
-
placeholder: |
|
|
25
|
-
1. Ask the AI to build X
|
|
26
|
-
2. Tool call Y fails with error Z
|
|
27
|
-
validations:
|
|
28
|
-
required: true
|
|
29
|
-
- type: textarea
|
|
30
|
-
id: expected
|
|
31
|
-
attributes:
|
|
32
|
-
label: Expected Behavior
|
|
33
|
-
description: What did you expect to happen?
|
|
34
|
-
validations:
|
|
35
|
-
required: true
|
|
36
|
-
- type: textarea
|
|
37
|
-
id: screenshots
|
|
38
|
-
attributes:
|
|
39
|
-
label: Screenshots/Logs
|
|
40
|
-
description: If applicable, add screenshots or paste terminal logs.
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
name: Feature Request
|
|
2
|
-
description: Propose a new tool or improvement for AndroJack-mcp
|
|
3
|
-
title: "[FEATURE] <Short description of the request>"
|
|
4
|
-
labels: [enhancement]
|
|
5
|
-
assignees: []
|
|
6
|
-
body:
|
|
7
|
-
- type: markdown
|
|
8
|
-
attributes:
|
|
9
|
-
value: |
|
|
10
|
-
Thanks for helping make AndroJack-mcp even better! 🚀
|
|
11
|
-
- type: textarea
|
|
12
|
-
id: problem
|
|
13
|
-
attributes:
|
|
14
|
-
label: Problem
|
|
15
|
-
description: Is your feature request related to a problem? Please describe.
|
|
16
|
-
validations:
|
|
17
|
-
required: true
|
|
18
|
-
- type: textarea
|
|
19
|
-
id: solution
|
|
20
|
-
attributes:
|
|
21
|
-
label: Solution
|
|
22
|
-
description: Describe the solution you'd like to see.
|
|
23
|
-
validations:
|
|
24
|
-
required: true
|
|
25
|
-
- type: textarea
|
|
26
|
-
id: alternatives
|
|
27
|
-
attributes:
|
|
28
|
-
label: Alternatives
|
|
29
|
-
description: Describe any alternative solutions or features you've considered.
|
|
30
|
-
- type: textarea
|
|
31
|
-
id: context
|
|
32
|
-
attributes:
|
|
33
|
-
label: Additional Context
|
|
34
|
-
description: Add any other context or screenshots about the feature request here.
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
## 🔍 Overview
|
|
2
|
-
Briefly describe the change(s) proposed in this PR.
|
|
3
|
-
|
|
4
|
-
## ✅ Contribution Checklist
|
|
5
|
-
Please review and check the following:
|
|
6
|
-
- [ ] My code follows the code style of this project.
|
|
7
|
-
- [ ] I have updated the documentation as needed.
|
|
8
|
-
- [ ] I have added/updated tests (if applicable) and they pass.
|
|
9
|
-
- [ ] All new and existing tests passed.
|
|
10
|
-
- [ ] My change requires a change to the .github/ guidelines.
|
|
11
|
-
|
|
12
|
-
## 🛠️ Reproduction / Verification
|
|
13
|
-
How was this change verified? (e.g., tested with Claude Desktop, MCP Inspector, etc.)
|
|
14
|
-
|
|
15
|
-
## 🔗 Related Issues
|
|
16
|
-
Fixes #[issue-number]
|
package/CONTRIBUTING.md
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# Contributing to AndroJack-MCP
|
|
2
|
-
|
|
3
|
-
First off, thank you for considering contributing to AndroJack-MCP! It's people like you that make AndroJack such a great tool for the Android community.
|
|
4
|
-
|
|
5
|
-
## 🚀 How Can I Contribute?
|
|
6
|
-
|
|
7
|
-
### Reporting Bugs
|
|
8
|
-
If you find a bug, please open an issue at [https://github.com/VIKAS9793/AndroJack-mcp/issues](https://github.com/VIKAS9793/AndroJack-mcp/issues). Please include:
|
|
9
|
-
- A clear, descriptive title.
|
|
10
|
-
- Steps to reproduce the issue.
|
|
11
|
-
- Expected vs. actual behavior.
|
|
12
|
-
|
|
13
|
-
### Suggesting Enhancements
|
|
14
|
-
Have an idea for a new tool or feature? Open an issue with the "enhancement" label at [https://github.com/VIKAS9793/AndroJack-mcp/issues](https://github.com/VIKAS9793/AndroJack-mcp/issues).
|
|
15
|
-
|
|
16
|
-
### Pull Requests
|
|
17
|
-
1. Fork the repo: [https://github.com/VIKAS9793/AndroJack-mcp](https://github.com/VIKAS9793/AndroJack-mcp)
|
|
18
|
-
2. Create your feature branch (`git checkout -b feature/AmazingFeature`)
|
|
19
|
-
3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
|
|
20
|
-
4. Push to the branch (`git push origin feature/AmazingFeature`)
|
|
21
|
-
5. Open a Pull Request.
|
|
22
|
-
|
|
23
|
-
## 🛠️ Local Development Setup
|
|
24
|
-
See the [README.md](https://github.com/VIKAS9793/AndroJack-mcp/blob/main/README.md) for local setup instructions.
|
|
25
|
-
|
|
26
|
-
---
|
|
27
|
-
*Maintained by [Vikas Sahani](https://github.com/VIKAS9793)*
|
package/SECURITY.md
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Security Policy
|
|
2
|
-
|
|
3
|
-
## Supported Versions
|
|
4
|
-
|
|
5
|
-
The following versions of AndroJack-mcp are currently being supported with security updates:
|
|
6
|
-
|
|
7
|
-
| Version | Supported |
|
|
8
|
-
| ------- | ------------------ |
|
|
9
|
-
| 1.3.x | :white_check_mark: |
|
|
10
|
-
| < 1.3 | :x: |
|
|
11
|
-
|
|
12
|
-
## Reporting a Vulnerability
|
|
13
|
-
|
|
14
|
-
We take the security of AndroJack-mcp seriously. If you believe you have found a security vulnerability, please do **not** open a public issue. Instead, please report it privately.
|
|
15
|
-
|
|
16
|
-
Please send an email to **vikassahani17@gmail.com**.
|
|
17
|
-
|
|
18
|
-
When reporting, please include:
|
|
19
|
-
- A description of the vulnerability.
|
|
20
|
-
- Steps to reproduce (if possible).
|
|
21
|
-
- Potential impact.
|
|
22
|
-
|
|
23
|
-
We will acknowledge your report within 48 hours and provide a timeline for a fix if necessary.
|
|
24
|
-
|
|
25
|
-
---
|
|
26
|
-
*Maintained by [Vikas Sahani](https://github.com/VIKAS9793)*
|
|
Binary file
|
|
Binary file
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_what_is_this": "Google Antigravity is a standalone agentic AI IDE launched Nov 18 2025 alongside Gemini 3.",
|
|
3
|
-
"_not_firebase": "This is NOT Firebase Studio or Project IDX — those are separate Google products.",
|
|
4
|
-
"_download": "https://antigravity.google/download",
|
|
5
|
-
"_mcp_docs": "https://antigravity.google/docs/mcp",
|
|
6
|
-
"_instructions": [
|
|
7
|
-
"OPTION A – Via Antigravity UI (recommended, zero file editing):",
|
|
8
|
-
" 1. Open Antigravity",
|
|
9
|
-
" 2. In the Agent pane, click '...' (three dots) at the top",
|
|
10
|
-
" 3. Select MCP Servers → Manage MCP Servers",
|
|
11
|
-
" 4. Click 'View raw config'",
|
|
12
|
-
" This opens the mcp_config.json file directly in the editor.",
|
|
13
|
-
" 5. Add the 'androjack' block from mcpServers below and save.",
|
|
14
|
-
" 6. Return to Manage MCP Servers and refresh — AndroJack appears in your tool list.",
|
|
15
|
-
"",
|
|
16
|
-
"OPTION B – Edit the config file directly:",
|
|
17
|
-
" macOS / Linux: ~/.gemini/antigravity/mcp_config.json",
|
|
18
|
-
" Windows: C:\\Users\\<USER>\\.gemini\\antigravity\\mcp_config.json",
|
|
19
|
-
" (Create directories and file if they don't exist yet.)",
|
|
20
|
-
"",
|
|
21
|
-
"After saving, restart the Antigravity agent session or refresh MCP Servers."
|
|
22
|
-
],
|
|
23
|
-
"mcpServers": {
|
|
24
|
-
"androjack": {
|
|
25
|
-
"command": "npx",
|
|
26
|
-
"args": [
|
|
27
|
-
"-y",
|
|
28
|
-
"androjack-mcp"
|
|
29
|
-
]
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_comment": "Claude Desktop MCP Configuration for AndroJack",
|
|
3
|
-
"_instructions": [
|
|
4
|
-
"1. Open: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)",
|
|
5
|
-
" or: %APPDATA%\\Claude\\claude_desktop_config.json (Windows)",
|
|
6
|
-
"2. Merge the 'mcpServers' block below into that file.",
|
|
7
|
-
"3. Restart Claude Desktop.",
|
|
8
|
-
"4. Look for the hammer icon (🔨) in the chat input — that confirms MCP is active."
|
|
9
|
-
],
|
|
10
|
-
"mcpServers": {
|
|
11
|
-
"androjack": {
|
|
12
|
-
"command": "npx",
|
|
13
|
-
"args": ["-y", "androjack-mcp"],
|
|
14
|
-
"_note": "Uses npx — no global install needed. Downloads on first run."
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
package/config/cursor_mcp.json
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_comment": "Cursor IDE MCP Configuration for AndroJack",
|
|
3
|
-
"_instructions": [
|
|
4
|
-
"OPTION A – Project-level (recommended for Android repos):",
|
|
5
|
-
" Place this file at: <your-android-project>/.cursor/mcp.json",
|
|
6
|
-
" Cursor will auto-detect it when you open the project.",
|
|
7
|
-
"",
|
|
8
|
-
"OPTION B – Global:",
|
|
9
|
-
" Mac/Linux: ~/.cursor/mcp.json",
|
|
10
|
-
" Windows: %USERPROFILE%\\.cursor\\mcp.json",
|
|
11
|
-
"",
|
|
12
|
-
"After saving, open Cursor → Settings → MCP to confirm 'androjack' appears with a green dot."
|
|
13
|
-
],
|
|
14
|
-
"mcpServers": {
|
|
15
|
-
"androjack": {
|
|
16
|
-
"command": "npx",
|
|
17
|
-
"args": ["-y", "androjack-mcp"],
|
|
18
|
-
"env": {}
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_comment": "JetBrains AI Assistant MCP Configuration for AndroJack (Android Studio / IntelliJ)",
|
|
3
|
-
"_instructions": [
|
|
4
|
-
"JetBrains AI Assistant supports MCP via the AI Assistant plugin (version 2024.3+).",
|
|
5
|
-
"",
|
|
6
|
-
"1. Open Android Studio → Settings → Tools → AI Assistant → MCP Servers",
|
|
7
|
-
"2. Click '+' → Add MCP Server",
|
|
8
|
-
"3. Set:",
|
|
9
|
-
" Name: AndroJack",
|
|
10
|
-
" Type: stdio",
|
|
11
|
-
" Command: npx",
|
|
12
|
-
" Args: -y androjack-mcp",
|
|
13
|
-
"",
|
|
14
|
-
"OR use the mcp.json file approach if your version supports it:",
|
|
15
|
-
" ~/.config/JetBrains/<IDE><version>/mcp.json",
|
|
16
|
-
"",
|
|
17
|
-
"5. Restart Android Studio and open AI Assistant panel — AndroJack tools will appear.",
|
|
18
|
-
"",
|
|
19
|
-
"NOTE: JetBrains MCP support is rolling out per IDE version.",
|
|
20
|
-
"Check: https://plugins.jetbrains.com/plugin/22282-ai-assistant for latest."
|
|
21
|
-
],
|
|
22
|
-
"mcpServers": {
|
|
23
|
-
"androjack": {
|
|
24
|
-
"command": "npx",
|
|
25
|
-
"args": ["-y", "androjack-mcp"]
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
package/config/kiro_mcp.json
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_what_is_this": "AWS Kiro is Amazon's agentic AI IDE (GA 2025). Full MCP support built-in.",
|
|
3
|
-
"_docs": "https://kiro.dev/docs/mcp/",
|
|
4
|
-
"_one_click_install": "https://kiro.dev/launch/mcp/add?name=androjack&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22androjack-mcp%22%5D%2C%22disabled%22%3Afalse%2C%22autoApprove%22%3A%5B%5D%7D",
|
|
5
|
-
|
|
6
|
-
"_instructions": [
|
|
7
|
-
"OPTION A – One-click install (easiest):",
|
|
8
|
-
" Open _one_click_install URL above while Kiro is running.",
|
|
9
|
-
" Kiro prompts you to confirm — AndroJack is added instantly.",
|
|
10
|
-
"",
|
|
11
|
-
"OPTION B – Kiro IDE UI:",
|
|
12
|
-
" 1. Open Kiro",
|
|
13
|
-
" 2. Click the MCP configuration panel in Settings",
|
|
14
|
-
" 3. Click '+ Add' and fill in command: npx, args: -y androjack-mcp",
|
|
15
|
-
"",
|
|
16
|
-
"OPTION C – Project-level file (recommended for Android repos):",
|
|
17
|
-
" Create: <your-android-project>/.kiro/settings/mcp.json",
|
|
18
|
-
" Paste the mcpServers block below.",
|
|
19
|
-
" NOTE: Do NOT commit this file if it contains credentials.",
|
|
20
|
-
"",
|
|
21
|
-
"OPTION D – Global config:",
|
|
22
|
-
" Edit: ~/.kiro/settings/mcp.json",
|
|
23
|
-
" Paste the mcpServers block below.",
|
|
24
|
-
"",
|
|
25
|
-
"OPTION E – Kiro CLI:",
|
|
26
|
-
" kiro-cli mcp add --name androjack --scope workspace --command npx --args '-y androjack-mcp'",
|
|
27
|
-
"",
|
|
28
|
-
"Kiro also supports 'Powers' — bundled MCP + steering docs packages.",
|
|
29
|
-
"See: https://kiro.dev/docs/powers/installation/ to package AndroJack as a Kiro Power."
|
|
30
|
-
],
|
|
31
|
-
|
|
32
|
-
"mcpServers": {
|
|
33
|
-
"androjack": {
|
|
34
|
-
"command": "npx",
|
|
35
|
-
"args": ["-y", "androjack-mcp"],
|
|
36
|
-
"disabled": false,
|
|
37
|
-
"autoApprove": []
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
package/config/vscode_mcp.json
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_comment": "VS Code GitHub Copilot MCP Configuration for AndroJack",
|
|
3
|
-
"_instructions": [
|
|
4
|
-
"VS Code supports MCP via .vscode/mcp.json (workspace) or User settings.",
|
|
5
|
-
"",
|
|
6
|
-
"OPTION A – Workspace (recommended — check into your Android repo):",
|
|
7
|
-
" Create: <your-android-project>/.vscode/mcp.json",
|
|
8
|
-
" Content: the 'servers' object below.",
|
|
9
|
-
"",
|
|
10
|
-
"OPTION B – User settings.json:",
|
|
11
|
-
" Add inside your existing settings.json:",
|
|
12
|
-
" 'github.copilot.mcp.servers': { ... servers object ... }",
|
|
13
|
-
"",
|
|
14
|
-
"After saving, open GitHub Copilot Chat → Agent mode → '+' → you should see AndroJack tools.",
|
|
15
|
-
"VS Code version 1.99+ required for MCP support."
|
|
16
|
-
],
|
|
17
|
-
"servers": {
|
|
18
|
-
"androjack": {
|
|
19
|
-
"type": "stdio",
|
|
20
|
-
"command": "npx",
|
|
21
|
-
"args": ["-y", "androjack-mcp"]
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
package/config/windsurf_mcp.json
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_comment": "Windsurf (Codeium) MCP Configuration for AndroJack",
|
|
3
|
-
"_instructions": [
|
|
4
|
-
"1. Open Windsurf → Preferences (Cmd+, / Ctrl+,)",
|
|
5
|
-
"2. Search for 'MCP' in settings",
|
|
6
|
-
"3. Click 'Edit in settings.json' or navigate to:",
|
|
7
|
-
" Mac/Linux: ~/.codeium/windsurf/mcp_config.json",
|
|
8
|
-
" Windows: %USERPROFILE%\\.codeium\\windsurf\\mcp_config.json",
|
|
9
|
-
"4. Add the mcpServers block below.",
|
|
10
|
-
"5. Restart Windsurf — Cascade panel will show AndroJack tools."
|
|
11
|
-
],
|
|
12
|
-
"mcpServers": {
|
|
13
|
-
"androjack": {
|
|
14
|
-
"command": "npx",
|
|
15
|
-
"args": ["-y", "androjack-mcp"]
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
package/tsconfig.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2022",
|
|
4
|
-
"module": "Node16",
|
|
5
|
-
"moduleResolution": "Node16",
|
|
6
|
-
"lib": ["ES2022"],
|
|
7
|
-
"outDir": "./build",
|
|
8
|
-
"rootDir": "./src",
|
|
9
|
-
"strict": true,
|
|
10
|
-
"esModuleInterop": true,
|
|
11
|
-
"skipLibCheck": true,
|
|
12
|
-
"forceConsistentCasingInFileNames": true,
|
|
13
|
-
"resolveJsonModule": true
|
|
14
|
-
},
|
|
15
|
-
"include": ["src/**/*"],
|
|
16
|
-
"exclude": ["node_modules", "build"]
|
|
17
|
-
}
|