* 生成 JSConfig 配置 * @returns {Object} JSConfig 配置对象
()
| 97 | 'settings', |
| 98 | 'temp', |
| 99 | ], |
| 100 | }; |
| 101 | }, |
| 102 | |
| 103 | createTSConfig() { |
| 104 | return { |
| 105 | compilerOptions: { |
| 106 | module: 'commonjs', |
| 107 | lib: ['es2015', 'es2017', 'dom'], |
| 108 | target: 'es5', |
| 109 | experimentalDecorators: true, |
| 110 | skipLibCheck: true, |
| 111 | outDir: 'temp/vscode-dist', |
| 112 | forceConsistentCasingInFileNames: true, |
| 113 | }, |
| 114 | exclude: [ |
| 115 | 'node_modules', |
| 116 | 'library', |
| 117 | 'local', |
| 118 | 'temp', |
nothing calls this directly
no outgoing calls
no test coverage detected