50c057184c
* feat(Icons removal): Removed all related icons commands and files * chore: fix (remove) all gulp related imports and task for icons * chore: removed extensions folder and switch all imports (+ small fixes) * chore: re-added defaults.json on root * feat(Icons removal): Added vsc-material-theme-icons dependency
26 lines
446 B
JSON
26 lines
446 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "out",
|
|
"lib": [
|
|
"es7",
|
|
"dom"
|
|
],
|
|
"sourceMap": true,
|
|
"allowUnreachableCode": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": true
|
|
},
|
|
"include": [
|
|
"./.gulp/**/*",
|
|
"./typings/**/*",
|
|
"./src/**/*",
|
|
"./test/**/*",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test"
|
|
]
|
|
}
|