19 lines
516 B
JSON
19 lines
516 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"esModuleInterop": true,
|
||
|
"incremental": true,
|
||
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
||
|
"noEmit": true,
|
||
|
"strict": true,
|
||
|
"target": "ES6",
|
||
|
"tsBuildInfoFile": "../node_modules/.cache/tsbuildinfo/functions", // avoid clobbering the build tsbuildinfo
|
||
|
"types": ["jest", "node"],
|
||
|
"jsx": "react",
|
||
|
"moduleResolution": "NodeNext",
|
||
|
},
|
||
|
"exclude": ["node_modules"],
|
||
|
"include": ["**/*.ts"],
|
||
|
"watchOptions": {
|
||
|
"excludeDirectories": ["node_modules"]
|
||
|
}
|
||
|
}
|