UNPKG

533 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 "esModuleInterop": true,
11
12 // If the library is an external module (uses `export`), this allows your test file to import "mylib" instead of "./index".
13 // If the library is global (cannot be imported via `import` or `require`), leave this out.
14 "baseUrl": "../",
15 "paths": {
16 "mylib": ["."]
17 }
18 }
19}