72a12df8e1
* 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
30 lines
526 B
JSON
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"
|
|
]
|
|
}
|