29 lines
532 B
JSON
29 lines
532 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"rootDir": ".",
|
||
|
|
"outDir": "dist",
|
||
|
|
"declaration": true,
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"typeRoots": [
|
||
|
|
"./types"
|
||
|
|
],
|
||
|
|
"incremental": true,
|
||
|
|
"tsBuildInfoFile": ".tsbuildinfo"
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*.ts",
|
||
|
|
"types/**/*.d.ts"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist",
|
||
|
|
"tests"
|
||
|
|
]
|
||
|
|
}
|