16 lines
215 B
JSON
16 lines
215 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"rootDir": ".",
|
||
|
|
"noEmit": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*.ts",
|
||
|
|
"__tests__/**/*.ts"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"lib",
|
||
|
|
"node_modules"
|
||
|
|
]
|
||
|
|
}
|