Files
z-elements/tsconfig.base.json
Mitch Hijlkema a6d98a9d84 initial commit
Signed-off-by: Mitch Hijlkema <mitch@hijlkema.codes>
2023-08-24 14:04:43 +02:00

26 lines
640 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@hijlkema-codes/z-accordion": ["libs/accordion/src/index.ts"],
"@hijlkema-codes/internal/z-styles": [
"libs/_internal/styles/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}