Files
vscode/extensions/php/tsconfig.json
T
Matt Bierner 6bab0e0cc0 Move PHP extension to strict mode
Compile the PHP extension with strict mode TS. Mostly adding annotations where values can be null or undefined.
2017-11-06 14:36:56 -08:00

14 lines
168 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": [
"es2015"
],
"module": "commonjs",
"outDir": "./out",
"strict": true
},
"include": [
"src/**/*"
]
}