-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathtsconfig.scripts.json
More file actions
61 lines (61 loc) · 1.99 KB
/
Copy pathtsconfig.scripts.json
File metadata and controls
61 lines (61 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"extends": "./tsconfig.json",
"compilerOptions": {
"allowImportingTsExtensions": true,
"composite": false,
"incremental": false,
"noEmit": true,
"types": ["node", "bun"]
},
"include": [
"scripts/agents-neutral-gate.ts",
"scripts/agents-neutral-gate-config.ts",
"scripts/agents-neutral-gate-ast.ts",
"scripts/agents-neutral-gate-checks.ts",
"scripts/agents-neutral-gate-provenance.ts",
"scripts/bind-release-deps.ts",
"scripts/build.ts",
"scripts/build_package.ts",
"scripts/build_sandbox.ts",
"scripts/build_vscode_companion.ts",
"scripts/check-build-status.ts",
"scripts/check-cli-import-boundary.ts",
"scripts/check-legacy-paths.ts",
"scripts/legacy-paths/**/*.ts",
"scripts/check-lockfile.ts",
"scripts/check-storage-import-boundary.ts",
"scripts/check-storage-package-cycle.ts",
"scripts/chmod_executable.ts",
"scripts/clean.ts",
"scripts/copy_bundle_assets.ts",
"scripts/copy_files.ts",
"scripts/deflake.ts",
"scripts/dev-env.ts",
"scripts/generate-git-commit-info.ts",
"scripts/generate-keybindings-doc.ts",
"scripts/generate-settings-doc.ts",
"scripts/generate-settings-schema.ts",
"scripts/generate_prompt_manifest.ts",
"scripts/genai-import-inventory.ts",
"scripts/genai-enclave/**/*.ts",
"scripts/get-release-version.ts",
"scripts/prepare-package.ts",
"scripts/run-lint.ts",
"scripts/sandbox_command.ts",
"scripts/start.ts",
"scripts/telemetry.ts",
"scripts/utils/**/*.ts",
"scripts/version.ts",
"scripts/bun-test-manifest.ts",
"scripts/run_bun_tests.ts",
"scripts/tests/bun-test-manifest.test.ts",
"scripts/tests/issue-2342.test.ts",
"scripts/tests/run_bun_tests.test.ts",
"scripts/tests/stub-helpers.test.ts",
"scripts/tests/stub-helpers.wait-for.test.ts",
"test-setup/stub-helpers.ts",
"test-setup/stub-helpers.bun.test.ts",
"test-setup/augment-bun-vi.ts",
"test-setup/augment-bun-vi.test.ts"
]
}