mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-19 11:15:49 +00:00
18 lines
490 B
JSON
18 lines
490 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
/* Modules */
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
/* Type Checking */
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./**/*"
|
|
],
|
|
}
|