18 lines
474 B
JSON
18 lines
474 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"typeRoots": [
|
||
|
"./node_modules/@types",
|
||
|
"./src/types"
|
||
|
],
|
||
|
"target": "es2022",
|
||
|
"lib": ["ES2016", "ES2021", "ES2022", "ESNext"],
|
||
|
"module": "commonjs",
|
||
|
"rootDir": "./src",
|
||
|
"resolveJsonModule": true,
|
||
|
"outDir": "./lib",
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"strict": true,
|
||
|
"skipLibCheck": true
|
||
|
}
|
||
|
}
|