File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments