mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-02 06:33:40 +08:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
export default {
|
|
parser: "@typescript-eslint/parser",
|
|
extends: ["plugin:@typescript-eslint/recommended"],
|
|
parserOptions: {
|
|
project: "./tsconfig.json",
|
|
tsconfigRootDir: __dirname,
|
|
ecmaVersion: 2020,
|
|
sourceType: "module",
|
|
createDefaultProgram: true,
|
|
},
|
|
rules: {},
|
|
};
|