16 lines
304 B
JSON
16 lines
304 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "commonjs",
|
||
|
"declaration": true,
|
||
|
"moduleResolution": "node",
|
||
|
"outDir": "./build",
|
||
|
"strict": true,
|
||
|
"allowSyntheticDefaultImports": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src",
|
||
|
],
|
||
|
"exclude": ["node_modules", "**/__tests__/*"]
|
||
|
}
|