mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-27 22:36:06 +00:00
18 lines
441 B
JSON
18 lines
441 B
JSON
{
|
|
"extends": "@lifeforge/configs/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"noEmit": false,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true
|
|
},
|
|
"include": ["./src/**/*", "./contract.ts"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|