34 lines
654 B
JSON
34 lines
654 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"useDefineForClassFields": false,
|
|
"jsx": "react",
|
|
"jsxFactory": "m",
|
|
"jsxFragmentFactory": "m.Fragment",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@osm/*": [
|
|
"resources/ts/*"
|
|
]
|
|
},
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"resources/ts/**/*",
|
|
"vite.config.ts"
|
|
]
|
|
}
|