Javascript-Library/tsconfig.json
Liam eb9ab2cd5b
Some checks failed
Publish Package / build (push) Failing after 23s
use the new api format
2024-04-17 16:35:39 +01:00

15 lines
260 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"declaration": true,
"outDir": "./dist",
"baseUrl": "./src",
"paths": {
"@/*": ["src/*"],
"@types/*": ["src/types/*"]
}
},
"include": ["src/**/*"]
}