Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sharepoint branch updated to work on M1/M2 macs #490

Open
wants to merge 3 commits into
base: sharepoint
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
some of the JS libraries do not have type definition files(.d.ts)
when running npm run build you'll get a quite a few errors that talk about missing type definition files... They are not not missing... just adding one line 
"noImplicitAny": false
in tsconfig.json file suppresses those messages.
  • Loading branch information
hakt0-r committed Jun 24, 2023
commit d1c0391bac6c4736313026318888484bc00f7bec
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"sourceMap": true,
"noImplicitAny": false,
}
}
}