1
0
Files
placeholder-js/tsconfig.json
2024-05-18 18:02:09 +02:00

24 lines
531 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"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"
}
}