21 lines
502 B
JSON
21 lines
502 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"strict": false,
|
|
"target": "ES2022",
|
|
"lib": ["dom", "ES2022"],
|
|
"module": "ES2022",
|
|
"declaration": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": false,
|
|
"strictNullChecks": false,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["./lib/src/**/*"],
|
|
"exclude": ["src/**/*.test.ts"]
|
|
}
|