mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
24 lines
429 B
JavaScript
24 lines
429 B
JavaScript
path = require("path");
|
|
module.exports = {
|
|
"extends": "../../.eslintrc.json",
|
|
"ignorePatterns": [
|
|
"!**/*"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"*.ts"
|
|
],
|
|
"parserOptions": {
|
|
"project": [
|
|
path.join(__dirname, "tsconfig.lib.json"),
|
|
path.join(__dirname, "tsconfig.spec.json")
|
|
],
|
|
"createDefaultProgram": true
|
|
},
|
|
"rules": {
|
|
}
|
|
}
|
|
]
|
|
}
|