mirror of
https://github.com/SrIzan10/sern-cli.git
synced 2026-05-01 11:05:17 +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"]
|
|
}
|