как использовать sass для next.js - PullRequest
0 голосов
/ 30 сентября 2019

Я делаю проект Next.js для tyepscript

Я пытался установить sass

, но произошла ошибка

Parsing error: "parserOptions.project" has been set for @typescript-eslint/parser.
The file does not match your project config: 
The file must be included in at least one of the projects provided.

добавить включенный проект next.config.js

но ошибка не исправлена ​​

мой .eslintrc.js код там

module.exports = {
  env: {
    browser: true,
    es6: true,
  },
  extends: [
    'eslint:recommended',
    'plugin:@typescript-eslint/recommended'
  ],
  globals: {
    Atomics: 'readonly',
    SharedArrayBuffer: 'readonly',
  },
  parser: '@typescript-eslint/parser',
  parserOptions: {
    ecmaFeatures: {
      jsx: true,
    },
    project: [
      './tsconfig.json'
    ],
    sourceType: 'module',
  },
  plugins: [
    'react',
    '@typescript-eslint',
  ],
  rules: {
    '@typescript-eslint/explicit-function-return-type': 'off',
    '@typescript-eslint/explicit-member-accessibility': 'off',
    'indent': 'off',
    '@typescript-eslint/indent': ['error', 2],
    '@typescript-eslint/no-unnecessary-type-assertion': 'error',
    'eol-last': ['error', 'always'],
    'func-style': ['error', 'expression', {
      allowArrowFunctions: true
    }],
    'newline-before-return': 'error',
    'no-dupe-class-members': 'error',
    'no-var': 'error',
    'object-shorthand': ['error', 'always'],
    'prefer-arrow-callback': 'error',
    'prefer-const': 'error',
    'prefer-spread': 'error',
    'require-yield': 'error'
  },
};

Пока вы смотрите на формулу, кажется, что она работает без проблем, и я думаю, что eslint являетсяпричина, но не решила проблему, есть кто-нибудь, кто знает об этой проблеме?

Спасибо

1 Ответ

0 голосов
/ 07 октября 2019

Использование createDefaultProgram: true может быть временным решением в parserOptions до следующего выпуска.

parserOptions:  {
    ...,
    createDefaultProgram: true,        
},

И это известная проблема.

https://github.com/typescript-eslint/typescript-eslint/issues/967

...