bf9a2bb6ed
* chore: added editor config and fix vscode settings * fix: eslint and typescript * chore: cleanup folders (gulp) * feat: cleanup and working generator
30 lines
513 B
JSON
30 lines
513 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "dist",
|
|
"lib": [
|
|
"es7",
|
|
"dom"
|
|
],
|
|
"sourceMap": true,
|
|
"allowUnreachableCode": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"./types",
|
|
"./src/**/*",
|
|
"./test/**/*",
|
|
"./scripts/**/*",
|
|
"./env.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"build",
|
|
".vscode-test"
|
|
]
|
|
}
|