-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathtsconfig.scripts.json
More file actions
28 lines (28 loc) · 926 Bytes
/
Copy pathtsconfig.scripts.json
File metadata and controls
28 lines (28 loc) · 926 Bytes
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
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
// These are loosely-typed dev/build scripts (.cjs/.mjs). Keep strict off so a
// checkJs run doesn't demand JSDoc annotations on every parameter. TS 6.0 made
// `strict` default to true, so pin it explicitly to stay version-independent.
"strict": false,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"],
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
},
"include": [
"scripts/**/*.cjs",
"scripts/**/*.mjs",
"packages/argent/scripts/**/*.cjs",
"packages/tool-server/scripts/**/*.mjs",
// Shipped runtime code `tsc --build` never sees: no `allowJs` anywhere.
"packages/tool-server/src/tools/flows/script/**/*.mjs",
"packages/skills/scripts/**/*.js"
]
}