-
-
Notifications
You must be signed in to change notification settings - Fork 399
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 613 Bytes
/
Copy pathtsconfig.json
File metadata and controls
27 lines (27 loc) · 613 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
{
"compileOnSave": true,
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"outDir": "./dist",
"strict": true,
"module": "commonjs",
"moduleResolution": "node",
"sourceRoot": "src/",
"target": "ES2017",
"lib": ["ES2017", "dom"],
"sourceMap": true,
"types": ["node"],
"skipLibCheck": true,
"esModuleInterop": true
},
"include": [
"src/electron.ts",
"src/spec/electron.ts",
"src/spec/demoVideo.ts",
"src/spec/leakTest.ts",
"src/spec/testMcpIntrospection.ts",
"scripts/*.ts"
],
"exclude": ["node_modules"]
}