1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/tsconfig.json
Sebastian Malton a6bfd73de9 fix test
Signed-off-by: Sebastian Malton <smalton@mirantis.com>
2020-07-14 15:55:25 -04:00

43 lines
865 B
JSON

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