0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-22 12:27:29 +01:00

make TypeScript ignore global typings (#5704)

This commit is contained in:
Adam Rackis 2020-11-23 11:44:23 -06:00 committed by GitHub
parent 666b7aefa8
commit 201b057ec5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,7 @@
//"strict": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true
"noUnusedParameters": true,
"typeRoots": ["./node_modules/@types"]
}
}