c040e556ae
* chore: eslintrc fix * chore: update package json with new build scripts, correct build folder * feat: build ui scripts * chore: start fixing eslint * chore: fix interfaces name * feat: add copy dist source to build with cp (for now)
31 lines
542 B
JSON
31 lines
542 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/**/*",
|
|
"./env.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"build",
|
|
".vscode-test"
|
|
]
|
|
}
|