1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/tsconfig.json
Sebastian Malton 6664215e36 Remove unused build/notarize.js
- File is not referenced anywhere in the repo

- Allows us to set "allowJs" to `false` in the `tsconfig.json` which
  reduces the random errors when opening that file in vscode

- Also remove the electron-notarize package as no longer used anywhere

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2020-11-13 15:14:26 -05:00

47 lines
876 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"jsx": "react",
"target": "ES2017",
"module": "ESNext",
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"moduleResolution": "Node",
"sourceMap": true,
"strict": false,
"noImplicitAny": true,
"noUnusedLocals": false,
"noImplicitReturns": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"allowJs": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"traceResolution": false,
"resolveJsonModule": true,
"paths": {
"*": [
"node_modules/*",
"types/*"
]
}
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"exclude": [
"node_modules",
"out",
"dist",
"coverage",
"binaries",
"static"
]
}