1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/extensions/example-extension/tsconfig.json
Sebastian Malton 89a9ed4086 some work
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2020-11-10 08:27:23 -05:00

34 lines
617 B
JSON

{
"compilerOptions": {
"outDir": "dist",
"module": "CommonJS",
"target": "ES2017",
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"moduleResolution": "Node",
"sourceMap": false,
"declaration": false,
"strict": false,
"noImplicitAny": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"jsx": "react"
},
"include": [
"./*.ts",
"./*.tsx",
"src/renderer.tsx",
"src/page.tsx",
"src/main.ts"
],
"exclude": [
"node_modules",
"*.js"
]
}