vscode-php-intellisense/tsconfig.json

21 lines
483 B
JSON
Raw Normal View History

2016-08-25 15:55:00 +00:00
{
2018-11-11 17:32:17 +00:00
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "out",
"esModuleInterop": true,
2018-11-11 17:32:17 +00:00
"lib": ["es6"],
"noImplicitAny": true,
2018-11-11 17:32:17 +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
2018-11-11 17:32:17 +00:00
},
"exclude": ["node_modules", "out", "vendor"]
2016-08-25 15:55:00 +00:00
}