mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- They didn't exist anyway so this now causes compile time errors instead of runtime ones Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name>
64 lines
1.2 KiB
JSON
64 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "react",
|
|
"target": "ES2019",
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"moduleResolution": "Node",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"traceResolution": false,
|
|
"resolveJsonModule": true,
|
|
"useDefineForClassFields": true,
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*",
|
|
"types/*"
|
|
]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-plugin-css-modules",
|
|
"options": {
|
|
"namedExports": false
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"types/*.d.ts",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"out",
|
|
"dist",
|
|
"coverage",
|
|
"binaries",
|
|
"static",
|
|
"src/extensions/npm"
|
|
]
|
|
}
|