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.
 

41 lines
863 B

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