message-schemas/tsconfig.json

22 lines
391 B
JSON

{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"rootDir": "src/",
"outDir": "dist/",
"strictNullChecks": true,
"plugins": [
{
"transform": "typia/lib/transform"
}
]
},
"include": [
"src/"
]
}