wormhole/clients/js/tsconfig.json

14 lines
288 B
JSON
Raw Normal View History

{
"compilerOptions": {
2023-05-05 07:02:22 -07:00
"incremental": true,
"target": "es2019",
"module": "commonjs",
"outDir": "./build",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true
},
2023-05-06 02:02:05 -07:00
"include": ["src", "types"]
}