mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-06-13 10:01:02 +00:00
Enable strict TypeScript mode
- strict: true - noImplicitAny: true - strictNullChecks: true - noUnusedLocals: true - noUnusedParameters: true - allowJs: false (TypeScript only) This catches null/undefined bugs at compile time.
This commit is contained in:
+6
-5
@@ -14,11 +14,12 @@
|
|||||||
"@pezkuwi/theme": ["../shared/theme"],
|
"@pezkuwi/theme": ["../shared/theme"],
|
||||||
"@pezkuwi/types": ["../shared/types"]
|
"@pezkuwi/types": ["../shared/types"]
|
||||||
},
|
},
|
||||||
"noImplicitAny": false,
|
"strict": true,
|
||||||
"noUnusedParameters": false,
|
"noImplicitAny": true,
|
||||||
|
"strictNullChecks": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"allowJs": true,
|
"allowJs": false,
|
||||||
"noUnusedLocals": false,
|
"noUnusedLocals": true,
|
||||||
"strictNullChecks": false
|
"noUnusedParameters": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user