This commit is contained in:
peli 2020-06-28 08:21:48 -07:00
Родитель 14b4d0edf8
Коммит 1f189c4c53
2 изменённых файлов: 15 добавлений и 13 удалений

Просмотреть файл

@ -4,7 +4,9 @@
"description": "GraphQL client for JACDAC",
"main": "index.js",
"scripts": {
"build": "tsc"
"clean": "rm -Rf dist",
"build": "tsc",
"watch": "tsc -w"
},
"author": "",
"license": "MIT",

Просмотреть файл

@ -1,17 +1,17 @@
{
"compilerOptions": {
"moduleResolution": "node",
"target": "es6",
"module":"commonjs",
"lib": ["es2015", "es2016", "es2017", "es2020", "dom"],
"strict": false,
"module": "commonjs",
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"preserveConstEnums": true,
"target": "es2018",
"outDir": "dist",
"typeRoots": [
"node_modules/@types"
]
"esModuleInterop": true
},
"include": [
"*.ts",
"../src/**.ts"
],
"exclude": [
"node_modules"
]
}