This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2022-07-20 16:04:09 -04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"target": "esnext",
|
|
|
|
|
"sourceMap": false,
|
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"isolatedModules": true,
|
2022-07-26 21:05:26 -04:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-07-20 16:04:09 -04:00
|
|
|
"types" : ["node"],
|
|
|
|
|
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"/@/*": [
|
|
|
|
|
"./src/*"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src/**/*.ts",
|
|
|
|
|
"../../types/**/*.d.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"**/*.spec.ts",
|
|
|
|
|
"**/*.test.ts"
|
|
|
|
|
]
|
|
|
|
|
}
|