19 lines
282 B
JSON
19 lines
282 B
JSON
|
{
|
||
|
"extends": "./tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"outDir": "build",
|
||
|
"typeRoots": [
|
||
|
"./node_modules/@types",
|
||
|
"src/types"
|
||
|
],
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"*": [
|
||
|
"node_modules/*"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
]
|
||
|
}
|