vscode/extensions/git/tsconfig.json

20 lines
278 B
JSON
Raw Normal View History

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