mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 08:08:10 +08:00
22 lines
498 B
JSON
22 lines
498 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/**/*", "internal_packages/**/*"]
|
||
|
}
|