1
0
forked from a/lifeto-shop
lifeto-shop/tsconfig.json

31 lines
678 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"],
"types": [ "node" ],
"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
},
2024-08-05 21:22:28 +00:00
"include": [
"src",
"app",
"index",
],
"exclude": [
"node_modules",
],
2022-06-26 23:01:10 +00:00
"references": [{ "path": "./tsconfig.node.json" }]
}