nodejs-resolver 0.1.1

nodejs resolve
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "compilerOptions": {
    "baseUrl": "nested",
    "paths": {
      "test0": ["./test0-success.ts"],
      "test1/*": ["./test1-success.ts"],
      "test2/*": ["./test2-success/*"],
      "t*t3/foo": ["./test3-succ*s.ts"],
      "test4/*": ["./test4-first/*", "./test4-second/*"],
      "test5/*": ["./test5-first/*", "./test5-second/*"],
      "/virtual-in/test": ["./actual/test"],
      "/virtual-in-star/*": ["./actual/*"],
    }
  },
}