We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd883a commit bf6a895Copy full SHA for bf6a895
gai-frontend/lib/chat/scripting/extensions/tsconfig.json
@@ -1,10 +1,14 @@
1
-// This is just for the IDE to tell it the typescript level
2
-// See build-scripting.sh for the tsc options.
3
{
4
- "compilerOptions": {
5
- "target": "es2020",
6
- // "module": "es2022",
7
- // "moduleResolution": "node",
8
- "strict": true
9
- }
+ "compilerOptions": {
+ "target": "es2020",
+ "module": "es2020",
+ "moduleResolution": "node",
+ "outDir": "./dist",
+ "rootDir": "./",
+ "strict": true,
+ "esModuleInterop": true,
10
+ "skipLibCheck": true
11
+ },
12
+ "include": ["./**/*.ts"],
13
+ "exclude": ["node_modules"]
14
}
0 commit comments