2022-10-31 19:29:48 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-03-11 12:04:18 +01:00
|
|
|
"strict": true,
|
2023-06-19 17:08:29 +02:00
|
|
|
"module": "commonjs",
|
|
|
|
"target": "ES2020",
|
|
|
|
"noImplicitAny": true,
|
2022-10-31 19:29:48 +01:00
|
|
|
"moduleResolution": "node",
|
2022-11-02 04:04:40 +01:00
|
|
|
"esModuleInterop": true,
|
2023-06-19 17:08:29 +02:00
|
|
|
"jsx": "react",
|
|
|
|
"lib": [ "ES2020", "DOM" ],
|
|
|
|
|
|
|
|
"baseUrl": "src/",
|
2024-03-16 18:07:53 +01:00
|
|
|
"paths": {
|
|
|
|
"~/*": ["./js/*"],
|
|
|
|
"@json/*": ["./json/*"]
|
|
|
|
},
|
2022-10-31 19:29:48 +01:00
|
|
|
}
|
|
|
|
}
|