2024-07-23 08:46:02 -06:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-07-28 22:55:15 -06:00
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
},
|
2024-07-23 08:46:02 -06:00
|
|
|
"outDir": "./dist",
|
2024-07-28 22:55:15 -06:00
|
|
|
"declaration": true,
|
2024-07-23 08:46:02 -06:00
|
|
|
"declarationDir": "./dist",
|
|
|
|
"jsx": "react",
|
2024-08-20 16:55:23 -06:00
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext"
|
2024-07-23 08:46:02 -06:00
|
|
|
},
|
2024-07-28 22:55:15 -06:00
|
|
|
"include": ["src/**/*.tsx", "src/**/*.ts"]
|
2024-07-23 08:46:02 -06:00
|
|
|
}
|