We aggreed to use 2 indent size in json files. The reason is npm use 2 indent in package.json and this is the defacto
19 lines
380 B
JSON
19 lines
380 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"removeComments": false,
|
|
"noImplicitAny": true,
|
|
"suppressImplicitAnyIndexErrors": true
|
|
},
|
|
"exclude": [
|
|
"./node_modules",
|
|
".electron/dist",
|
|
"./dist"
|
|
]
|
|
}
|