1
0
mirror of https://github.com/lensapp/lens.git synced 2024-09-20 13:57:23 +03:00
lens/tsconfig.json
Jari Kolehmainen 2f94de56c7
Fix development on M1 (Apple Silicon) (#3759)
* m1 compatible package.json

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>

* fix ts-node tsconfig

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>

* switch from node-sass to sass

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2021-09-09 09:31:27 +03:00

57 lines
1.1 KiB
JSON

{
"compilerOptions": {
"baseUrl": ".",
"jsx": "react",
"target": "ES2017",
"module": "ESNext",
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"moduleResolution": "Node",
"sourceMap": true,
"strict": false,
"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" }]
},
"ts-node": {
"transpileOnly": true,
"compilerOptions": {
"module": "CommonJS"
}
},
"include": [
"src/**/*",
"types/*.d.ts"
],
"exclude": [
"node_modules",
"out",
"dist",
"coverage",
"binaries",
"static",
"src/extensions/npm"
]
}