15 lines
389 B
JSON
15 lines
389 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": ["./src/types", "./node_modules/@types"]
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|