vscode/extensions/git/tsconfig.json

20 lines
278 B
JSON
Raw Normal View History

2016-10-10 17:37:20 +02:00
{
"compilerOptions": {
2016-11-28 17:18:46 +01:00
"target": "es6",
2016-11-29 17:09:55 +01:00
"lib": [
"es2016"
],
2016-10-10 17:37:20 +02:00
"module": "commonjs",
2016-11-25 11:51:04 +01:00
"outDir": "./out",
2017-11-06 22:31:06 +01:00
"typeRoots": [
"./node_modules/@types"
],
"strict": true,
2018-02-22 10:22:10 +01:00
"experimentalDecorators": true,
2018-08-16 11:49:05 +02:00
"noUnusedLocals": true
2016-10-10 17:37:20 +02:00
},
"include": [
"src/**/*"
2016-10-10 17:37:20 +02:00
]
}