1
0
mirror of https://github.com/lensapp/lens.git synced 2024-09-20 13:57:23 +03:00
lens/tsconfig.json
Sebastian Malton 9d6158a620
set "allowJs" to false in tsconfig (#1377)
- None of the .ts files include any of the .js files

- All .js files are either passed to electron-builder or used as config
  files for other programs.

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2020-11-16 10:43:22 -05:00

52 lines
957 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"
}
},
"include": [
"src/**/*",
"types/*.d.ts"
],
"exclude": [
"node_modules",
"out",
"dist",
"coverage",
"binaries",
"static",
"src/extensions/npm"
]
}