31 lines
914 B
JSON
31 lines
914 B
JSON
{
|
|
"extends": "../../tsconfig.json", // Extend the config options from the root
|
|
"compilerOptions": {
|
|
// The following options are not required as they've been moved to the root tsconfig
|
|
// "baseUrl": "./",
|
|
// "emitDecoratorMetadata": true,
|
|
// "experimentalDecorators": true,
|
|
// "incremental": true,
|
|
// "skipLibCheck": true,
|
|
// "strictNullChecks": true,
|
|
// "noImplicitAny": true,
|
|
// "strictBindCallApply": true,
|
|
// "forceConsistentCasingInFileNames": true,
|
|
// "noFallthroughCasesInSwitch": true
|
|
"strictPropertyInitialization": false,
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2021",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"plugins": [
|
|
{
|
|
"transform": "typia/lib/transform"
|
|
}
|
|
],
|
|
"strictNullChecks": true,
|
|
"strict": true
|
|
}
|
|
}
|