UNPKG

516 BJSONView Raw
1// Used by eslint for linting
2{
3 // We're just using this for index.d.ts
4 "include": [
5 "types/index.d.ts",
6 "types/test.ts"
7 ],
8 "compilerOptions": {
9 // We only want to lint the declaration file
10 "noEmit": true,
11 // We're relying on Babel for transpiling
12 "lib": ["ESNext"],
13 // We're relying on Babel for transpiling
14 "target": "ESNext",
15 // Inquirer requires this option
16 "allowSyntheticDefaultImports": true,
17 // Support type imports from globby and handlebars
18 "moduleResolution": "node"
19 }
20}