29 lines
696 B
JSON
29 lines
696 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2024", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
// "allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": false,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true
|
|
},
|
|
"references": [{ "path": "./packages/page-agent" }, { "path": "./packages/website" }],
|
|
"files": []
|
|
}
|