cubetiq-crypto-js/tsconfig.json

22 lines
530 B
JSON
Raw Permalink Normal View History

2022-02-14 10:24:23 +07:00
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
2022-02-14 16:15:32 +07:00
"sourceMap": true,
"outDir": "dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"lib": ["ES2015"],
"skipLibCheck": true,
"experimentalDecorators": true,
2022-02-14 16:15:32 +07:00
"declaration": true,
"paths": {
"@/*": ["./*"]
}
2022-02-14 10:24:23 +07:00
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}