vscode-php-intellisense/tsconfig.json

25 lines
450 B
JSON
Raw Normal View History

2016-08-25 15:55:00 +00:00
{
"compilerOptions": {
2016-10-11 01:34:15 +00:00
"target": "ES6",
2016-08-25 15:55:00 +00:00
"module": "commonjs",
"moduleResolution": "node",
"outDir": "out",
2016-10-12 08:45:01 +00:00
"lib": [
"es6"
],
"noImplicitAny": true,
2016-08-25 15:55:00 +00:00
"sourceMap": true,
2016-10-11 01:34:15 +00:00
"rootDir": "src",
"strictNullChecks": true,
"noImplicitThis": true,
2016-12-24 15:52:31 +00:00
"noImplicitReturns": true,
2016-12-25 11:33:12 +00:00
"noUnusedLocals": true,
"allowUnreachableCode": false,
2017-08-22 05:53:20 +00:00
"allowUnusedLabels": false
2016-08-25 15:55:00 +00:00
},
"exclude": [
2016-10-11 01:34:15 +00:00
"node_modules",
"out"
2016-08-25 15:55:00 +00:00
]
}