Skip to content

Commit 89c4a4f

Browse files
committed
chore: add tsconfig
1 parent 41cb384 commit 89c4a4f

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

tsconfig.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"extends": "./node_modules/mwts/tsconfig-midway.json",
3+
"compileOnSave": true,
4+
"compilerOptions": {
5+
"rootDir": "src",
6+
"outDir": "dist",
7+
"moduleResolution": "node",
8+
"experimentalDecorators": true,
9+
"emitDecoratorMetadata": true,
10+
"noImplicitThis": true,
11+
"noUnusedLocals": true,
12+
"stripInternal": true,
13+
"noImplicitReturns": false,
14+
"strict": false,
15+
"noEmitOnError": false,
16+
"skipLibCheck": true
17+
},
18+
"include": [
19+
"./src/**/*.ts"
20+
],
21+
"exclude": [
22+
"dist",
23+
"node_modules",
24+
"test"
25+
]
26+
}

0 commit comments

Comments
 (0)