20 lines
516 B
JSON
20 lines
516 B
JSON
{
|
|||
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
||
|
|
"compilerOptions": {
|
||
|
|
"rootDir": "./src",
|
||
|
|
"target": "esnext",
|
||
|
|
"lib": ["dom", "es2022", "esnext"],
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"strict": true,
|
||
|
|
"declaration": true,
|
||
|
|
"module": "es2022",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"types": [],
|
||
|
|
"outDir": "lib",
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"declarationMap": true,
|
||
|
|
"allowImportingTsExtensions": true
|
||
|
|
},
|
||
|
|
"include": ["src"]
|
||
|
|
}
|