File tree 2 files changed +13
-3
lines changed
etc/eslint/parser-options
2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 18
18
19
19
'use strict' ;
20
20
21
+ // MODULES //
22
+
23
+ var path = require ( 'path' ) ;
24
+ var rootDir = require ( './../../../lib/node_modules/@stdlib/_tools/utils/root-dir' ) ;
25
+
26
+
21
27
// MAIN //
22
28
23
29
/**
@@ -34,7 +40,7 @@ var options = {};
34
40
* @memberof options
35
41
* @type {string }
36
42
*/
37
- options . project = './ tsconfig.json';
43
+ options . project = path . join ( rootDir ( ) , ' tsconfig.json' ) ;
38
44
39
45
/**
40
46
* The source type.
Original file line number Diff line number Diff line change 34
34
"types" : []
35
35
},
36
36
"include" : [
37
- " **/docs/types/*.ts" ,
38
- " **/@stdlib/types/*.ts"
37
+ " docs/types/index.d.ts" ,
38
+ " docs/types/test.ts" ,
39
+ " lib/node_modules/**/docs/types/index.d.ts" ,
40
+ " lib/node_modules/**/docs/types/test.ts" ,
41
+ " lib/node_modules/**/@stdlib/types/index.d.ts" ,
42
+ " lib/node_modules/**/@stdlib/types/test.ts"
39
43
],
40
44
"exclude" : [
41
45
" node_modules"
You can’t perform that action at this time.
0 commit comments