Q-Apps-Utils/tsconfig.json

44 lines
882 B
JSON
Raw Normal View History

2023-10-09 18:44:15 +00:00
{
"compilerOptions": {
"baseUrl": ".",
2023-10-09 18:44:15 +00:00
"target": "ESNext",
"module": "ESNext",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"outDir": "./dist",
"strict": true,
2023-10-11 22:41:55 +00:00
"declaration": true,
"skipLibCheck": true,
2023-10-11 22:41:55 +00:00
"sourceMap": true,
2023-10-09 18:44:15 +00:00
/* Bundler mode */
"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 */
2023-10-09 18:44:15 +00:00
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true
},
2023-10-17 21:02:10 +00:00
"ts-node": {
"esm": true
},
"experimentalSpecifierResolution": "node",
"references": [
{
"path": "./tsconfig.node.json"
}
],
"include": ["src"],
}