akkordian/packages/akkordian.js/tsconfig.json
2023-12-22 11:27:48 -05:00

23 lines
490 B
JSON

{
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"lib": ["dom", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"outDir": "./built",
"paths": {
"@/*": ["./src/*"]
},
"sourceMap": true,
"strict": true,
"target": "es2022"
},
"exclude": ["./test/**/*"],
"include": ["./src/**/*"]
}