Skip to content

Commit 8b80bff

Browse files
committed
fix: deployable tsconfig
1 parent 66df3c3 commit 8b80bff

File tree

1 file changed

+24
-7
lines changed

1 file changed

+24
-7
lines changed

tsconfig.json

+24-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,32 @@
11
{
22
"compilerOptions": {
3+
"moduleResolution": "node",
34
"module": "commonjs",
45
"declaration": true,
5-
"removeComments": true,
6+
"noImplicitAny": false,
7+
"noUnusedLocals": false,
8+
"removeComments": false,
9+
"noLib": false,
610
"emitDecoratorMetadata": true,
711
"experimentalDecorators": true,
8-
"target": "es2017",
9-
"sourceMap": true,
10-
"outDir": "./dist",
12+
"target": "es6",
13+
"sourceMap": false,
14+
"allowJs": false,
15+
"rootDir": "./src",
1116
"baseUrl": "./",
12-
"incremental": true
17+
"outDir": "./dist",
18+
"lib": ["es2017"]
1319
},
14-
"exclude": ["node_modules", "dist"]
15-
}
20+
"include": [
21+
"*.ts",
22+
"**/*.ts"
23+
],
24+
"exclude": [
25+
"./index.ts",
26+
"./index.d.ts",
27+
"node_modules",
28+
"./**/*.spec.ts",
29+
"examples",
30+
"src/__tests__"
31+
]
32+
}

0 commit comments

Comments
 (0)