42 lines
824 B
JSON
42 lines
824 B
JSON
|
{
|
||
|
"include": [
|
||
|
"src",
|
||
|
"types",
|
||
|
"test", "formatters"
|
||
|
],
|
||
|
"compilerOptions": {
|
||
|
"module": "esnext",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"esnext"
|
||
|
],
|
||
|
"importHelpers": true,
|
||
|
"declaration": true,
|
||
|
"sourceMap": true,
|
||
|
"rootDirs": [
|
||
|
"./src",
|
||
|
"./test"
|
||
|
],
|
||
|
"strict": true,
|
||
|
"noImplicitAny": true,
|
||
|
"strictNullChecks": true,
|
||
|
"strictFunctionTypes": true,
|
||
|
"strictPropertyInitialization": true,
|
||
|
"noImplicitThis": true,
|
||
|
"alwaysStrict": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"moduleResolution": "node",
|
||
|
"baseUrl": "./",
|
||
|
"paths": {
|
||
|
"*": [
|
||
|
"src/*",
|
||
|
"node_modules/*"
|
||
|
]
|
||
|
},
|
||
|
"jsx": "react",
|
||
|
"esModuleInterop": true
|
||
|
}
|
||
|
}
|