21 lines
516 B
JSON
21 lines
516 B
JSON
// Used by eslint for linting
|
|
{
|
|
// We're just using this for index.d.ts
|
|
"include": [
|
|
"types/index.d.ts",
|
|
"types/test.ts"
|
|
],
|
|
"compilerOptions": {
|
|
// We only want to lint the declaration file
|
|
"noEmit": true,
|
|
// We're relying on Babel for transpiling
|
|
"lib": ["ESNext"],
|
|
// We're relying on Babel for transpiling
|
|
"target": "ESNext",
|
|
// Inquirer requires this option
|
|
"allowSyntheticDefaultImports": true,
|
|
// Support type imports from globby and handlebars
|
|
"moduleResolution": "node"
|
|
}
|
|
}
|