This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2019-12-03 21:08:23 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-01-22 18:55:16 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"sourceMap": true,
|
2019-12-03 21:08:23 +00:00
|
|
|
"strict": false,
|
2020-01-22 18:55:16 +00:00
|
|
|
"lib": [
|
|
|
|
"es2017",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"target": "es2017",
|
|
|
|
"esModuleInterop": true
|
|
|
|
},
|
|
|
|
"compileOnSave": true,
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"../../node_modules"
|
|
|
|
],
|
|
|
|
"awesomeTypescriptLoaderOptions": {
|
|
|
|
"reportFiles": [
|
|
|
|
"./src/**/*"
|
|
|
|
]
|
2019-12-03 21:08:23 +00:00
|
|
|
}
|
2020-01-22 18:55:16 +00:00
|
|
|
}
|