2020-01-26 06:12:48 +00:00
{
"compilerOptions" : {
/ * B a s i c O p t i o n s * /
2020-04-13 09:56:26 +00:00
// *"target": "ES2019", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
// *"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
// *"lib": [ /* Specify library files to be included in the compilation. */
// * "DOM",
// * "ES2019"
// *],
// *"allowJs": true, /* Allow javascript files to be compiled. */
2020-03-09 00:40:37 +00:00
"jsx" : "react" ,
2020-04-13 09:56:26 +00:00
"noUnusedLocals" : false ,
2020-01-26 06:12:48 +00:00
// "checkJs": true, /* Report errors in .js files. */
// "declaration": true, /* Generates corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
2020-04-13 09:56:26 +00:00
// *"sourceMap": true, /* Generates corresponding '.map' file. */
// *"outDir": "dist", /* Redirect output structure to the directory. */
// *"strict": true,
2020-05-24 19:44:16 +00:00
"baseUrl" : "." , / * B a s e d i r e c t o r y t o r e s o l v e n o n - a b s o l u t e m o d u l e n a m e s . * /
"paths" : {
"@/*" : [ "src/main/*" ] ,
"common/*" : [ "src/common/*" ]
} ,
2020-04-13 09:56:26 +00:00
// *"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
2020-01-26 06:12:48 +00:00
} ,
2020-04-13 09:56:26 +00:00
// *"include": [
// * "./src"
// *],
// *"exclude": [ "node_modules" ],
"extends" : "./node_modules/electron-webpack/tsconfig-base.json"
2020-01-26 06:12:48 +00:00
}