2021-10-13 08:02:10 +02:00
|
|
|
{
|
2022-01-06 17:19:59 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
2022-10-28 19:50:15 +02:00
|
|
|
"isolatedModules": true,
|
|
|
|
"useDefineForClassFields": false,
|
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "m",
|
2023-04-20 20:00:38 +02:00
|
|
|
"jsxFragmentFactory": "m.Fragment",
|
2022-01-06 17:19:59 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom",
|
|
|
|
"dom.iterable"
|
|
|
|
],
|
2022-01-13 18:16:04 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2023-05-07 14:07:09 +02:00
|
|
|
"@osm/*": [
|
2023-04-20 20:00:38 +02:00
|
|
|
"resources/ts/*"
|
2022-01-26 16:24:20 +01:00
|
|
|
]
|
2023-05-07 13:37:58 +02:00
|
|
|
},
|
|
|
|
"skipLibCheck": true
|
2022-01-06 17:19:59 +01:00
|
|
|
},
|
|
|
|
"include": [
|
2023-04-20 20:00:38 +02:00
|
|
|
"resources/ts/**/*",
|
2022-01-06 18:14:13 +01:00
|
|
|
"vite.config.ts"
|
2022-03-02 20:20:20 +01:00
|
|
|
]
|
2023-04-20 20:00:38 +02:00
|
|
|
}
|