2017-09-22 02:20:07 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
|
|
|
"outDir": "out",
|
|
|
|
"lib": [
|
|
|
|
"es6"
|
|
|
|
],
|
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": ".",
|
2017-10-02 19:08:42 +03:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"strictNullChecks": true,
|
2018-08-28 23:42:30 +03:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
2020-03-31 20:56:12 +03:00
|
|
|
"node_modules/@types/*",
|
2018-08-28 23:42:30 +03:00
|
|
|
"*"
|
|
|
|
]
|
2021-11-16 00:39:26 +03:00
|
|
|
}
|
2017-09-22 02:20:07 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2018-12-06 22:20:35 +03:00
|
|
|
".vscode-test",
|
|
|
|
"gulpfile.ts"
|
2017-09-22 02:20:07 +03:00
|
|
|
]
|
2018-08-28 23:42:30 +03:00
|
|
|
}
|