-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 1.02 KB
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 1.02 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
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "Bundler",
"lib": ["ES2020", "DOM"],
"allowJs": true,
"checkJs": false,
"strict": false,
"noImplicitAny": false,
"strictNullChecks": false,
"strictFunctionTypes": false,
"strictBindCallApply": false,
"strictPropertyInitialization": false,
"noImplicitThis": false,
"alwaysStrict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"outDir": "src/codex_autorunner/static/generated",
"skipLibCheck": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": [
"src/codex_autorunner/static_src/types.d.ts",
"src/codex_autorunner/static_src/**/*.ts"
],
"exclude": ["node_modules", ".venv", "build", "src/codex_autorunner/static/vendor/**"]
}