tovarish-relayer/tsconfig.json

18 lines
442 B
JSON
Raw Permalink Normal View History

2024-10-02 03:22:54 +03:00
{
"compilerOptions": {
"typeRoots": [
"./node_modules/@types",
"./src/types"
],
2024-10-22 01:22:25 +03:00
"target": "es2022",
"lib": ["ES2016", "ES2021", "ES2022", "ESNext"],
2024-10-02 03:22:54 +03:00
"module": "commonjs",
"rootDir": "./src",
"resolveJsonModule": true,
"outDir": "./lib",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}