vscode-php-intellisense/tsconfig.json

29 lines
525 B
JSON

{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "out",
"lib": [
"es6"
],
"noImplicitAny": true,
"sourceMap": true,
"rootDir": "src",
"strictNullChecks": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"typeRoots": [
"typings/modules",
"typings/globals"
]
},
"exclude": [
"node_modules",
"out"
]
}