Javascript-Library/tsconfig.json

15 lines
260 B
JSON
Raw Permalink Normal View History

2024-04-14 20:11:46 +00:00
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"declaration": true,
2024-04-17 15:35:39 +00:00
"outDir": "./dist",
"baseUrl": "./src",
"paths": {
"@/*": ["src/*"],
"@types/*": ["src/types/*"]
}
2024-04-14 20:11:46 +00:00
},
"include": ["src/**/*"]
}