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-07 17:20:42 +11:00
|
|
|
"lib": ["dom", "esnext"],
|
|
|
|
"types": ["node", "jest"],
|
2021-05-18 17:56:00 +02:00
|
|
|
"strict": false,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"paths": {
|
2022-11-07 17:20:42 +11:00
|
|
|
"verdaccio": ["./typings.d.ts"]
|
2021-05-18 17:56:00 +02:00
|
|
|
}
|
|
|
|
},
|
2022-07-21 11:24:07 +02:00
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
"**/dist",
|
|
|
|
"node_modules",
|
|
|
|
"**/node_modules",
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/__tests__",
|
|
|
|
"**/setup-jest.ts"
|
|
|
|
],
|
2022-11-07 17:20:42 +11:00
|
|
|
"include": ["./**/*", "./.eslintrc.js"],
|
2022-07-21 11:24:07 +02:00
|
|
|
"ts-node": {
|
|
|
|
"transpileOnly": true,
|
|
|
|
"files": true,
|
|
|
|
"compilerOptions": {
|
2022-11-07 17:20:42 +11:00
|
|
|
"types": ["node"]
|
2022-07-21 11:24:07 +02:00
|
|
|
}
|
|
|
|
}
|
2022-11-07 17:20:42 +11:00
|
|
|
}
|