2021-05-18 17:56:00 +02:00
|
|
|
{
|
2022-07-21 11:24:07 +02:00
|
|
|
"compileOnSave": false,
|
2021-05-18 17:56:00 +02:00
|
|
|
"compilerOptions": {
|
2022-07-21 11:24:07 +02:00
|
|
|
"baseUrl": ".",
|
|
|
|
"incremental": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"target": "ES2020",
|
|
|
|
"module": "CommonJS",
|
|
|
|
"skipLibCheck": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"strictBindCallApply": true,
|
2022-11-14 14:05:51 +01:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"jest"
|
|
|
|
],
|
2021-05-18 17:56:00 +02:00
|
|
|
"strict": false,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-11-29 16:28:00 +01:00
|
|
|
"noUnusedLocals": true,
|
2021-05-18 17:56:00 +02:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"paths": {
|
2022-11-14 14:05:51 +01:00
|
|
|
"verdaccio": [
|
|
|
|
"./typings.d.ts"
|
|
|
|
]
|
2022-11-29 16:28:00 +01:00
|
|
|
},
|
2021-05-18 17:56:00 +02:00
|
|
|
},
|
2022-07-21 11:24:07 +02:00
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
"**/dist",
|
|
|
|
"node_modules",
|
2022-11-14 14:05:51 +01:00
|
|
|
"**/node_modules"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"./**/*",
|
|
|
|
"./.eslintrc.js"
|
2022-07-21 11:24:07 +02:00
|
|
|
],
|
|
|
|
"ts-node": {
|
|
|
|
"transpileOnly": true,
|
|
|
|
"files": true,
|
|
|
|
"compilerOptions": {
|
2022-11-14 14:05:51 +01:00
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
]
|
2022-07-21 11:24:07 +02:00
|
|
|
}
|
|
|
|
}
|
2022-11-14 14:05:51 +01:00
|
|
|
}
|