block-timestamp/tsconfig.json
2024-12-19 14:13:17 +00:00

17 lines
447 B
JSON

{
"compilerOptions": {
"typeRoots": [
"./node_modules/@types"
],
"target": "es2022",
"lib": ["ES2016", "ES2021", "ES2022", "ESNext"],
"module": "commonjs",
"rootDir": "./src",
"resolveJsonModule": true,
"outDir": "./lib",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}