27 lines
576 B
JSON
27 lines
576 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noErrorTruncation": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"allowUnreachableCode": true,
|
|
"strict": true
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
}
|
|
}
|