Closed RobertRybaric closed 5 months ago
The file .eslintrc.json needs to be like this in order for the NPM BUILD to work:
{ "env": { "browser": true, "es2020": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended" ], "globals": { "ComponentFramework": true }, "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, "sourceType": "module" }, "plugins": [ "@microsoft/power-apps", "@typescript-eslint" ], "rules": { "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/no-explicit-any": "off", "no-unused-vars": "off", "no-undef" : "off" } }
Checked and confirmed
Closed by #140
The file .eslintrc.json needs to be like this in order for the NPM BUILD to work:
{ "env": { "browser": true, "es2020": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended" ], "globals": { "ComponentFramework": true }, "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, "sourceType": "module" }, "plugins": [ "@microsoft/power-apps", "@typescript-eslint" ], "rules": { "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/no-explicit-any": "off", "no-unused-vars": "off", "no-undef" : "off" } }