20 lines
460 B
JSON
20 lines
460 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "NodeNext",
|
||
|
|
"moduleResolution": "NodeNext",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"strict": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"declaration": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": ".",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"types": ["node"],
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"allowSyntheticDefaultImports": true
|
||
|
|
},
|
||
|
|
"include": ["ts/**/*", "mod.ts"],
|
||
|
|
"exclude": ["node_modules", "dist", "ui"]
|
||
|
|
}
|