18 lines
397 B
JSON
18 lines
397 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ESNext",
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "Node",
|
||
|
"lib": ["esnext"],
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"sourceMap": true,
|
||
|
"outDir": "build",
|
||
|
"baseUrl": "src",
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
},
|
||
|
"include": ["src/**/*.ts", "tests/**/*.ts"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|