mirror of
https://github.com/danbulant/pinguin
synced 2026-05-19 04:08:43 +00:00
29 lines
667 B
JSON
29 lines
667 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"module": "node16",
|
|
"lib": [
|
|
"ES2022"
|
|
],
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"rootDir": "./src",
|
|
"outDir": "lib",
|
|
"allowSyntheticDefaultImports": true,
|
|
"importHelpers": true,
|
|
"alwaysStrict": true,
|
|
"sourceMap": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"strictNullChecks": false,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|