43 lines
1 KiB
JSON
43 lines
1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"incremental": true,
|
|
"stripInternal": true,
|
|
"skipLibCheck": true,
|
|
"composite": true,
|
|
"types": [
|
|
"node",
|
|
"deno",
|
|
"vite/client"
|
|
],
|
|
"lib": [
|
|
"es2020",
|
|
"dom",
|
|
"dom.iterable",
|
|
"WebWorker",
|
|
],
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"useDefineForClassFields": true,
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/__snapshots__",
|
|
]
|
|
}
|