File tree 6 files changed +10
-20
lines changed
packages/plugin-eslint/mocks/fixtures/nx-monorepo
6 files changed +10
-20
lines changed Original file line number Diff line number Diff line change 1
- .nx / cache
1
+ .nx
Original file line number Diff line number Diff line change 2
2
"name" : " cli" ,
3
3
"sourceRoot" : " packages/cli/src" ,
4
4
"projectType" : " application" ,
5
+ "implicitDependencies" : [" core" ],
5
6
"targets" : {
6
7
"lint" : {
7
8
"executor" : " @nx/linter:eslint" ,
8
9
"outputs" : [" {options.outputFile}" ],
9
10
"options" : {
10
- "lintFilePatterns" : [
11
- " packages/cli/**/*.ts" ,
12
- " packages/cli/package.json"
13
- ]
11
+ "lintFilePatterns" : [" packages/cli/**/*.ts" ]
14
12
}
15
13
}
16
14
}
Original file line number Diff line number Diff line change 2
2
"name" : " core" ,
3
3
"sourceRoot" : " packages/core/src" ,
4
4
"projectType" : " library" ,
5
+ "implicitDependencies" : [" utils" ],
5
6
"targets" : {
6
7
"lint" : {
7
8
"executor" : " @nx/linter:eslint" ,
8
9
"outputs" : [" {options.outputFile}" ],
9
10
"options" : {
10
- "lintFilePatterns" : [
11
- " packages/core/**/*.ts" ,
12
- " packages/core/package.json"
13
- ]
11
+ "lintFilePatterns" : [" packages/core/**/*.ts" ]
14
12
}
15
13
}
16
14
}
Original file line number Diff line number Diff line change 2
2
"name" : " nx-plugin" ,
3
3
"sourceRoot" : " packages/nx-plugin/src" ,
4
4
"projectType" : " library" ,
5
+ "implicitDependencies" : [" utils" ],
5
6
"targets" : {
6
7
"lint" : {
7
8
"executor" : " @nx/linter:eslint" ,
8
9
"outputs" : [" {options.outputFile}" ],
9
10
"options" : {
10
- "lintFilePatterns" : [
11
- " packages/nx-plugin/**/*.ts" ,
12
- " packages/nx-plugin/package.json" ,
13
- " packages/nx-plugin/generators.json"
14
- ]
11
+ "lintFilePatterns" : [" packages/nx-plugin/**/*.ts" ]
15
12
}
16
13
}
17
14
}
Original file line number Diff line number Diff line change 7
7
"executor" : " @nx/linter:eslint" ,
8
8
"outputs" : [" {options.outputFile}" ],
9
9
"options" : {
10
- "lintFilePatterns" : [
11
- " packages/utils/**/*.ts" ,
12
- " packages/utils/package.json"
13
- ]
10
+ "lintFilePatterns" : [" packages/utils/**/*.ts" ]
14
11
}
15
12
}
16
13
}
Original file line number Diff line number Diff line change 8
8
"emitDecoratorMetadata" : true ,
9
9
"experimentalDecorators" : true ,
10
10
"importHelpers" : true ,
11
- "target" : " es2015 " ,
11
+ "target" : " ES2022 " ,
12
12
"module" : " esnext" ,
13
- "lib" : [" es2020 " , " dom" ],
13
+ "lib" : [" ES2022 " , " dom" ],
14
14
"skipLibCheck" : true ,
15
15
"skipDefaultLibCheck" : true ,
16
16
"baseUrl" : " ." ,
You can’t perform that action at this time.
0 commit comments