24 lines
419 B
JSON
24 lines
419 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"experimentalDecorators": true,
|
|
"declaration": true,
|
|
"declarationDir": "./",
|
|
"types": [
|
|
"jest"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|