26 lines
660 B
JSON
26 lines
660 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./",
|
|
"types": ["node", "serviceworker"],
|
|
"lib": ["ES2022", "WebWorker"],
|
|
"ignoreDeprecations": "5.0"
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
},
|
|
"include": ["scripts/**/*"],
|
|
"exclude": ["node_modules", "dist", "docs/.vitepress/dist"]
|
|
}
|