2020-10-17 23:53:33 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"target": "es6",
|
|
|
|
"noImplicitAny": true,
|
2020-11-16 01:54:37 +00:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2020-10-17 23:53:33 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"node_modules/*",
|
2021-02-22 02:38:21 +00:00
|
|
|
"types/*"
|
2020-10-17 23:53:33 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"js/**/*"
|
|
|
|
]
|
2021-02-22 02:38:21 +00:00
|
|
|
}
|