Skip to content

Commit 8612336

Browse files
committed
[PROOF OF CONCEPT] Try to check types after build
1 parent d0c9263 commit 8612336

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

tsconfig.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"compilerOptions": {
3+
"sourceMap": true,
4+
"module": "esnext",
5+
"moduleResolution": "node",
6+
"target": "es5",
7+
"lib": ["es6", "dom"],
8+
"jsx": "preserve",
9+
"allowSyntheticDefaultImports": true,
10+
"noErrorTruncation": true,
11+
"allowJs": true,
12+
"strict": true,
13+
"noEmit": true,
14+
"outDir": "dev/null",
15+
"types": [],
16+
"baseUrl" : "./",
17+
"paths": {
18+
"*" : ["./node_modules/@types/*", "*"],
19+
}
20+
},
21+
"include": ["./packages/**/dist/cjs/index.d.ts"],
22+
"exclude": [
23+
"node_modules",
24+
"./node_modules",
25+
"./node_modules/*",
26+
"./node_modules/@types/node/index.d.ts",
27+
]
28+
}

0 commit comments

Comments
 (0)