mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-27 19:07:15 +08:00
22 lines
510 B
JSON
22 lines
510 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"jsx": "react",
|
||
|
"target": "es2017",
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"lib": ["es2017", "dom"],
|
||
|
"removeComments": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"inlineSourceMap": true,
|
||
|
"outDir": "lib",
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"*": ["../node_modules/*", "../src/global/*"]
|
||
|
}
|
||
|
},
|
||
|
"include": ["../src/**/*", "../src/types/*", "../**/*"]
|
||
|
}
|