message-schemas/misc/typia-proof-of-concept/tsconfig.json

21 lines
390 B
JSON

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