2019-10-23 00:02:59 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
|
|
|
"outDir": "out",
|
|
|
|
"lib": [
|
|
|
|
"es6"
|
|
|
|
],
|
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": ".",
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
2020-04-02 00:53:32 +03:00
|
|
|
"node_modules/@types/*",
|
2019-10-23 00:02:59 +03:00
|
|
|
"*"
|
|
|
|
]
|
2021-11-16 00:32:28 +03:00
|
|
|
}
|
2019-10-23 00:02:59 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
".vscode-test",
|
|
|
|
"gulpfile.ts"
|
|
|
|
]
|
|
|
|
}
|