Skip to content

Commit ed47343

Browse files
committed
Update tsconfig for typescript linting
1 parent 94fcfd1 commit ed47343

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

tsconfig.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
11
{
2-
"extends": "./node_modules/@pawjs/pawjs/tsconfig.json"
2+
"compilerOptions": {
3+
"declaration": true,
4+
"esModuleInterop": true,
5+
"experimentalDecorators": true,
6+
"jsx": "react",
7+
"lib": ["dom", "esnext", "dom.iterable", "scripthost", "es2015.promise"],
8+
"module": "amd",
9+
"moduleResolution": "node",
10+
"skipLibCheck": true,
11+
"strict": true,
12+
"target": "esnext",
13+
"outDir": "dist"
14+
},
15+
"include": [
16+
"**/*.ts",
17+
"**/*.tsx"
18+
],
19+
"exclude": [
20+
"dist",
21+
"node_modules",
22+
"**/dist/**/*",
23+
"src/__tests__/**",
24+
]
325
}

0 commit comments

Comments
 (0)