mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 07:23:06 +00:00
38 lines
951 B
JSON
38 lines
951 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowImportingTsExtensions": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"declaration": true,
|
|
"erasableSyntaxOnly": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"isolatedDeclarations": true,
|
|
"isolatedModules": true,
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"types": ["node"],
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": [
|
|
"index.ts",
|
|
"src/**/*.ts",
|
|
"test/**/*.ts",
|
|
"scripts/**/*.ts",
|
|
"tsdown.config.ts",
|
|
"vitest.config.ts"
|
|
]
|
|
}
|