Files
electron/spec/ts-smoke/tsconfig.json
trop[bot] eb02db5185 test: add TS smoke test for electron/utility (#47976)
chore: add TS smoke test for electron/utility

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: David Sanders <dsanders11@ucsbalum.com>
2025-08-06 14:47:42 +02:00

21 lines
450 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"typeRoots" : ["../../node_modules/@types"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"electron/main.ts",
"electron/renderer.ts",
"electron/utility.ts",
"../../electron.d.ts"
]
}