25 lines
433 B
JSON
25 lines
433 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDirs": [
|
|
"src",
|
|
"src/tests/mocks/*"
|
|
],
|
|
"sourceMap": true,
|
|
"target": "ES2019",
|
|
"module": "commonjs",
|
|
"outDir": "./lib",
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"*": ["node_modules/"],
|
|
"typings/*": ["src/typings/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"."
|
|
]
|
|
}
|