lifeto-shop/tsconfig.json

28 lines
697 B
JSON
Raw Normal View History

2022-06-26 23:01:10 +00:00
{
"compilerOptions": {
2024-08-05 21:22:28 +00:00
"incremental": true,
2022-06-26 23:01:10 +00:00
"target": "esnext",
"useDefineForClassFields": true,
2024-08-05 21:22:28 +00:00
"lib": ["DOM", "DOM.Iterable", "ESNext"],
2025-05-25 05:17:41 +00:00
"paths": {
"@/*": ["./src/*"]
},
2025-06-20 05:41:10 +00:00
"types": ["node"],
2024-08-05 21:22:28 +00:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2022-06-26 23:01:10 +00:00
"strict": true,
2024-08-05 21:22:28 +00:00
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
2022-06-26 23:01:10 +00:00
"resolveJsonModule": true,
2024-08-05 21:22:28 +00:00
"isolatedModules": false,
"noEmit": true,
"jsx": "react-jsx"
2022-06-26 23:01:10 +00:00
},
2025-06-20 05:41:10 +00:00
"include": ["src", "app", "index"],
"exclude": ["node_modules"],
2022-06-26 23:01:10 +00:00
"references": [{ "path": "./tsconfig.node.json" }]
}