mirror of
https://github.com/sern-handler/cli
synced 2026-06-06 01:16:53 +00:00
18 lines
344 B
JSON
18 lines
344 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["es2017", "dom"],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"strict": false,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["test", "src"]
|
|
}
|