We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8309c9a commit 3933a43Copy full SHA for 3933a43
.eslintrc.js
@@ -1,15 +1,16 @@
1
module.exports = {
2
parserOptions: {
3
ecmaVersion: 2018,
4
- sourceType: 'module'
+ sourceType: 'module',
5
+ project: './tsconfig.json'
6
},
7
env: {
8
es6: true,
9
browser: true,
10
node: true
11
12
extends: [
- 'standard'
13
+ 'standard-with-typescript'
14
],
15
plugins: [
16
'svelte3',
tsconfig.json
@@ -0,0 +1,8 @@
+{
+ "compilerOptions": {
+ "strictNullChecks": true
+ },
+ "files": [
+ "src/index.d.ts"
+ ]
+}
0 commit comments