UNPKG

508 BJSONView Raw
1{
2 "compilerOptions": {
3 "module": "commonjs",
4 "lib": ["es6"],
5 "noImplicitAny": true,
6 "noImplicitThis": true,
7 "strictNullChecks": true,
8 "strictFunctionTypes": true,
9 "noEmit": true,
10
11 // If the library is an external module (uses `export`), this allows your test file to import "mylib" instead of "./index".
12 // If the library is global (cannot be imported via `import` or `require`), leave this out.
13 "baseUrl": "../test",
14 "paths": {
15 "mylib": ["."]
16 }
17 }
18}