Dan Van Brunt
01/05/2022, 9:25 PMnode_modules
even though I have a .eslintignore
?
…and my tsconfig.json
has this…
"exclude": ["./jest.config.js", "./node_modules/**/*", "./build/**/*", "./frontend/**/*", "./contentful-frontend/**/*"],
"include": ["lib", "src"]
thdxr
01/05/2022, 9:26 PMthdxr
01/05/2022, 9:27 PMthdxr
01/05/2022, 9:27 PMDan Van Brunt
01/05/2022, 9:28 PM{
"compilerOptions": {
"target": "ES2019",
"module": "commonjs",
"lib": ["es2019", "dom"],
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"inlineSourceMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"esModuleInterop": true,
"typeRoots": ["./types", "./node_modules/@types"],
},
"exclude": ["./jest.config.js", "./node_modules/**/*", "./build/**/*", "./frontend/**/*", "./contentful-frontend/**/*"],
"include": ["lib", "src"]
}
Dan Van Brunt
01/05/2022, 9:29 PMDan Van Brunt
01/05/2022, 9:29 PMthdxr
01/05/2022, 9:29 PMDan Van Brunt
01/05/2022, 9:29 PMDan Van Brunt
01/05/2022, 9:29 PMDan Van Brunt
01/05/2022, 9:41 PMDan Van Brunt
01/05/2022, 9:41 PMthdxr
01/05/2022, 9:42 PM