vsc-material-theme/tsconfig.json
Alessio Occhipinti 72a12df8e1 Feat/generator 4 iteration (#400)
* chore: move env into src for better build

* chore: removed unused things from webviews

* feat: a better "defaults" - material-theme.config.json

* chore: fix paths for scripts

* feat: new folder "core" with managers

* chore: cleanup all useless things

* chore: update messages to be messages

* refactor: new setAccent command and better material.theme.config entry
2019-12-26 11:30:46 +01:00

30 lines
526 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "dist",
"lib": [
"es7",
"dom"
],
"esModuleInterop": true,
"sourceMap": true,
"allowUnreachableCode": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"resolveJsonModule": true
},
"include": [
"./types",
"./src/**/*",
"./test/**/*",
"./scripts/**/*"
],
"exclude": [
"node_modules",
"dist",
"build",
".vscode-test"
]
}