You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
717 B

12 months ago
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
11 months ago
"lib": ["DOM", "DOM.Iterable", "ESNext"],
12 months ago
"skipLibCheck": true,
11 months ago
"declaration": true,
"sourceMap": true,
12 months ago
/* Bundler mode */
11 months ago
"moduleResolution": "node",
12 months ago
"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
},
11 months ago
"include": ["src/**/*"],
12 months ago
"references": [{ "path": "./tsconfig.node.json" }]
}