mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-10 09:32:33 +08:00
21 lines
514 B
JSON
21 lines
514 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2017", "dom", "esnext.array"],
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"inlineSourceMap": true,
|
|
"outDir": "lib",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["node_modules/*", "src/global/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "internal_packages/**/*"]
|
|
}
|