15 lines
332 B
JSON
15 lines
332 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ESNext", "DOM"],
|
|
"module": "ES2020",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"allowSyntheticDefaultImports": true,
|
|
},
|
|
"include": ["./**/*.ts", "./**/*.js"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|