2019-11-19 05:18:28 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["esnext", "dom"],
|
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": "./src",
|
2019-12-05 04:58:38 +03:00
|
|
|
"outDir": "./lib",
|
2019-12-06 22:28:23 +03:00
|
|
|
"strictBindCallApply": true,
|
|
|
|
"declaration": true
|
2019-11-19 05:18:28 +03:00
|
|
|
},
|
|
|
|
"compileOnSave": true,
|
2019-11-20 20:10:41 +03:00
|
|
|
"include": ["src/**/*.ts"],
|
2019-11-19 05:18:28 +03:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|