2017-07-25 20:55:49 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-07-01 01:00:04 +03:00
|
|
|
"outDir": "./dist",
|
2022-04-19 01:12:13 +03:00
|
|
|
"target":"es2018",
|
2021-11-21 00:52:52 +03:00
|
|
|
"module": "commonjs",
|
2017-07-25 20:55:49 +03:00
|
|
|
"sourceMap": true,
|
2019-04-21 03:34:08 +03:00
|
|
|
"declaration": true,
|
2020-07-01 01:00:04 +03:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"removeComments": false
|
2017-07-25 20:55:49 +03:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./src/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2020-07-01 01:00:04 +03:00
|
|
|
"./dist",
|
2017-07-25 20:55:49 +03:00
|
|
|
"./samples"
|
|
|
|
]
|
2021-11-21 00:52:52 +03:00
|
|
|
}
|