17 lines
250 B
JSON
17 lines
250 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"noEmit": true,
|
||
|
|
"rootDir": "."
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"tests/**/*.ts",
|
||
|
|
"tests/**/*.tsx",
|
||
|
|
"src/**/*.ts"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist"
|
||
|
|
]
|
||
|
|
}
|