generated from methanium/template
Initial commit
This commit is contained in:
commit
025c8c8e16
46 changed files with 13890 additions and 0 deletions
27
tsconfig.json
Normal file
27
tsconfig.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"allowImportingTsExtensions": true,
|
||||
"jsx": "react-jsx",
|
||||
"lib": ["DOM", "DOM.Iterable", "ES2023"],
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Bundler",
|
||||
"noEmit": true,
|
||||
"paths": {
|
||||
"@methanium/status-mtp": ["./packages/mtp/index.ts"],
|
||||
"mtp/raw": ["./apps/frontend/node_modules/.vite/mtp/mtp_wasm.d.ts"],
|
||||
"mtp/type-map": [
|
||||
"./apps/frontend/node_modules/.vite/mtp/mtp_type_map.d.ts"
|
||||
]
|
||||
},
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"target": "ES2023",
|
||||
"types": ["node", "vite/client"],
|
||||
"useDefineForClassFields": true
|
||||
},
|
||||
"include": [
|
||||
"apps/frontend/src",
|
||||
"apps/frontend/vite.config.ts",
|
||||
"packages/mtp"
|
||||
]
|
||||
}
|
||||
Loading…
Reference in a new issue