16 lines
307 B
JSON
16 lines
307 B
JSON
|
{
|
||
|
"extends": "../../tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"target": "ESNext",
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "node",
|
||
|
"rootDir": "./",
|
||
|
"outDir": "./dist",
|
||
|
"jsx": "react-jsx",
|
||
|
"jsxImportSource": "react"
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*.ts",
|
||
|
"test/**/*.tsx",
|
||
|
],
|
||
|
}
|