29 lines
729 B
JSON
29 lines
729 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"target": "es2020",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"incremental": true,
|
|
"stripInternal": true,
|
|
"skipLibCheck": true,
|
|
"composite": true
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/__snapshots__",
|
|
]
|
|
}
|