Skip to content

Commit 6c5e570

Browse files
committed
(simatec) Fix npm publish
1 parent 2f6d6c0 commit 6c5e570

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

tsconfig.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// Root tsconfig to set the settings and power editor support for all TS files
2+
{
3+
"compileOnSave": true,
4+
"compilerOptions": {
5+
// do not compile anything, this file is just to configure type checking
6+
"noEmit": true,
7+
8+
// check JS files
9+
"allowJs": true,
10+
"checkJs": true,
11+
12+
"module": "commonjs",
13+
"moduleResolution": "node",
14+
"esModuleInterop": true,
15+
// this is necessary for the automatic typing of the adapter config
16+
"resolveJsonModule": true,
17+
18+
// Set this to false if you want to disable the very strict rules (not recommended)
19+
"strict": true,
20+
// Or enable some of those features for more fine-grained control
21+
// "strictNullChecks": true,
22+
// "strictPropertyInitialization": true,
23+
// "strictBindCallApply": true,
24+
"noImplicitAny": false,
25+
// "noUnusedLocals": true,
26+
// "noUnusedParameters": true,
27+
"useUnknownInCatchVariables": false,
28+
29+
// Consider targetting es2019 or higher if you only support Node.js 12+
30+
"target": "es2019",
31+
32+
},
33+
"include": [
34+
"**/*.js",
35+
"**/*.d.ts"
36+
],
37+
"exclude": [
38+
"node_modules/**"
39+
]
40+
}

0 commit comments

Comments
 (0)