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
|
|
|
"strictNullChecks": false,
|
|
|
|
"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",
|
|
|
|
"allowJs": true,
|
|
|
|
"lib": [ "ES2020", "DOM" ],
|
|
|
|
|
|
|
|
"baseUrl": "src/",
|
|
|
|
"paths": { "*": ["js/*"] },
|
2022-10-31 19:29:48 +01:00
|
|
|
}
|
|
|
|
}
|