Q-Apps-Utils/tsconfig.json

32 lines
798 B
JSON
Raw Normal View History

2023-10-09 18:44:15 +00:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
2023-10-11 22:41:55 +00:00
"lib": ["DOM", "DOM.Iterable", "ESNext"],
2023-10-09 18:44:15 +00:00
"skipLibCheck": true,
2023-10-11 22:41:55 +00:00
"declaration": true,
"sourceMap": true,
2023-10-09 18:44:15 +00:00
/* Bundler mode */
2023-10-17 21:02:10 +00:00
"moduleResolution": "Node",
2023-10-09 18:44:15 +00:00
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"noImplicitAny": false,
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true
},
2023-10-17 21:02:10 +00:00
"ts-node": {
"esm": true
},
"experimentalSpecifierResolution": "node",
2023-10-11 22:41:55 +00:00
"include": ["src/**/*"],
2023-10-09 18:44:15 +00:00
"references": [{ "path": "./tsconfig.node.json" }]
}