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