UNPKG

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