File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
etc/eslint/parser-options Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1818
1919'use strict' ;
2020
21+ // MODULES //
22+
23+ var path = require ( 'path' ) ;
24+ var rootDir = require ( './../../../lib/node_modules/@stdlib/_tools/utils/root-dir' ) ;
25+
26+
2127// MAIN //
2228
2329/**
@@ -34,7 +40,7 @@ var options = {};
3440* @memberof options
3541* @type {string }
3642*/
37- options . project = './ tsconfig.json';
43+ options . project = path . join ( rootDir ( ) , ' tsconfig.json' ) ;
3844
3945/**
4046* The source type.
Original file line number Diff line number Diff line change 3434 "types" : []
3535 },
3636 "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"
3943 ],
4044 "exclude" : [
4145 " node_modules"
You can’t perform that action at this time.
0 commit comments