19 lines
453 B
JSON
19 lines
453 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"rootDir": ".",
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
|
"useDefineForClassFields": true,
|
|
"resolveJsonModule": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"emitDeclarationOnly": true,
|
|
"noEmit": true,
|
|
"outDir": "./dist",
|
|
"declarationDir": "./dist",
|
|
"jsx": "preserve"
|
|
},
|
|
"include": ["src"]
|
|
}
|