7bdf572b2d
Signed-off-by: prescientmoon <git@moonythm.dev>
24 lines
528 B
JSON
24 lines
528 B
JSON
{
|
|
"include": ["src", "types"],
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"lib": ["dom", "esnext"],
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"*": ["src/*", "node_modules/*"]
|
|
},
|
|
"jsx": "react",
|
|
"esModuleInterop": true
|
|
}
|
|
}
|